Fixed python versions

This commit is contained in:
Kristofers Solo 2022-12-10 17:00:15 +02:00
parent 70a540166b
commit 349aa70882
3 changed files with 3 additions and 6 deletions

View File

@ -1,17 +1,14 @@
name: Tests name: Tests
on: on:
- push - push
- pull_request - pull_request
jobs: jobs:
test: test:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, windows-latest] os: [ubuntu-latest, windows-latest]
python-version: ['3.10', '3.11'] python-version: ["3.10"]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}

View File

@ -17,5 +17,5 @@ show_error_codes = true
strict_equality = true strict_equality = true
warn_redundant_casts = true warn_redundant_casts = true
warn_return_any = true warn_return_any = true
warn_unreachable = true warn_unreachable = false
warn_unused_configs = true warn_unused_configs = true