diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index cace684..86c86d8 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -7,17 +7,18 @@ on: [push, pull_request] jobs: test: strategy: + fail-fast: false # To see all versions that fail. matrix: - os: [ubuntu, windows, macos] - python: [3.5, 3.6, 3.7, 3.8, 3.9] + os: ["ubuntu", "windows", "macos"] + python: ["3.7", "3.8", "3.9", "3.10"] # https://devguide.python.org/versions/#versions runs-on: ${{ matrix.os }}-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} cache: 'pip' diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 860ed45..eaa6f63 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,10 +38,6 @@ build: extends: .test tags: [x64, docker, linux] -test:linux:x64:3.6: - extends: .test:linux:x64 - image: python:3.6 - test:linux:x64:3.7: extends: .test:linux:x64 image: python:3.7