@@ -113,29 +113,29 @@ jobs:
113113 prefix : ' (Allowed failure)'
114114
115115 steps :
116- - name : Check out repository
117- uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
118- with :
119- persist-credentials : false
120- fetch-depth : 0
121- - name : Set up Python ${{ matrix.python }}
122- uses : actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
123- with :
124- python-version : ${{ matrix.python }}
125- allow-prereleases : true
126- - name : Install base dependencies
127- run : python -m pip install --upgrade pip setuptools tox
128- - name : Print Python, pip, setuptools, and tox versions
129- run : |
130- python -c "import sys; print(f'Python {sys.version}')"
131- python -c "import pip; print(f'pip {pip.__version__}')"
132- python -c "import setuptools; print(f'setuptools {setuptools.__version__}')"
133- python -c "import tox; print(f'tox {tox.__version__}')"
134- - name : Run tests
135- run : python -m tox -e ${{ matrix.tox_env }} -- -n=2 ${{ matrix.toxposargs }}
136- - name : Upload coverage to codecov
137- if : ${{ contains(matrix.tox_env, '-cov') }}
138- uses : codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
139- with :
140- files : ./coverage.xml
141- verbose : true
116+ - name : Check out repository
117+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
118+ with :
119+ persist-credentials : false
120+ fetch-depth : 0
121+ - name : Set up Python ${{ matrix.python }}
122+ uses : actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
123+ with :
124+ python-version : ${{ matrix.python }}
125+ allow-prereleases : true
126+ - name : Install base dependencies
127+ run : python -m pip install --upgrade pip setuptools tox
128+ - name : Print Python, pip, setuptools, and tox versions
129+ run : |
130+ python -c "import sys; print(f'Python {sys.version}')"
131+ python -c "import pip; print(f'pip {pip.__version__}')"
132+ python -c "import setuptools; print(f'setuptools {setuptools.__version__}')"
133+ python -c "import tox; print(f'tox {tox.__version__}')"
134+ - name : Run tests
135+ run : python -m tox -e ${{ matrix.tox_env }} -- -n=2 ${{ matrix.toxposargs }}
136+ - name : Upload coverage to codecov
137+ if : ${{ contains(matrix.tox_env, '-cov') }}
138+ uses : codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
139+ with :
140+ files : ./coverage.xml
141+ verbose : true
0 commit comments