diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 641be53..9d20e43 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -6,21 +6,21 @@ on: jobs: build: - name: "🐍 Ubuntu 20.04 - Python ${{ matrix.python-version }}" - runs-on: ubuntu-20.04 + name: "🐍 Ubuntu 22.04 - Python ${{ matrix.python-version }}" + runs-on: ubuntu-22.04 strategy: fail-fast: false matrix: - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true - name: Setup Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -34,4 +34,4 @@ jobs: - name: Test run: | - python -m pytest -vs tests + python -m pytest -vs tests \ No newline at end of file