@@ -11,20 +11,20 @@ jobs:
11
11
os : [ ubuntu-latest, macos-latest, windows-latest ]
12
12
python-version : [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
13
13
fail-fast : false
14
- runs-on : ${{ matrix.os }}
15
- steps :
16
- - uses : actions/checkout@v4 # https://github.com/actions/checkout
17
- with :
18
- # Only a single commit is fetched by default, for the ref/SHA that triggered the workflow.
19
- # Set fetch-depth: 0 to fetch all history for all branches and tags.
20
- fetch-depth : 0 # Needed for setuptools_scm to work correctly
21
- - uses : actions/setup-python@v5 # https://github.com/actions/setup-python
22
- with :
23
- python-version : ${{ matrix.python-version }}
24
- allow-prereleases : true
25
- - name : Install dependencies
26
- run : python -m pip install --upgrade pip setuptools setuptools-scm nox
27
- - name : Run tests and post coverage results
28
- env :
29
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
30
- run : python -m nox --non-interactive --session tests-${{ matrix.python-version }} # Run nox for a single version of Python
14
+ runs-on : ${{ matrix.os }}
15
+ steps :
16
+ - uses : actions/checkout@v4 # https://github.com/actions/checkout
17
+ with :
18
+ # Only a single commit is fetched by default, for the ref/SHA that triggered the workflow.
19
+ # Set fetch-depth: 0 to fetch all history for all branches and tags.
20
+ fetch-depth : 0 # Needed for setuptools_scm to work correctly
21
+ - uses : actions/setup-python@v5 # https://github.com/actions/setup-python
22
+ with :
23
+ python-version : ${{ matrix.python-version }}
24
+ allow-prereleases : true
25
+ - name : Install dependencies
26
+ run : python -m pip install --upgrade pip setuptools setuptools-scm nox
27
+ - name : Run tests and post coverage results
28
+ env :
29
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
30
+ run : python -m nox --non-interactive --session tests-${{ matrix.python-version }} # Run nox for a single version of Python
0 commit comments