Skip to content

Commit 4b6ce45

Browse files
committed
Style
1 parent da24151 commit 4b6ce45

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ env:
1616
PIP_NO_PYTHON_VERSION_WARNING: "1"
1717
# Keep in sync with .pre-commit-config.yaml/default_language_version/python.
1818
PYTHON_LATEST: "3.11"
19-
# avoid warnings about shallow checkout, but also make sure pytest accepts us.
19+
# Avoid warnings about shallow checkout, but also make sure pytest accepts us.
2020
SETUPTOOLS_SCM_PRETEND_VERSION: "99.9.9"
2121

2222
permissions:
2323
contents: read
2424

2525
jobs:
2626
tests:
27-
name: tests on ${{ matrix.python-version }}
27+
name: Tests on ${{ matrix.python-version }}
2828
runs-on: ubuntu-latest
2929

3030
strategy:
@@ -58,6 +58,7 @@ jobs:
5858
- uses: actions/setup-python@v4
5959
with:
6060
python-version: ${{ matrix.python-version }}
61+
- run: python -Im pip install --upgrade wheel tox
6162

6263
- name: Determine Python version for tox
6364
run: |
@@ -75,7 +76,6 @@ jobs:
7576
7677
echo TOX_PYTHON=$V >>$GITHUB_ENV
7778
78-
- run: python -Im pip install --upgrade wheel tox
7979
- run: python -Im tox run -f ${{ env.TOX_PYTHON }}
8080

8181
- name: Upload coverage data
@@ -150,7 +150,7 @@ jobs:
150150
- run: python -Im tox -e docs,changelog
151151

152152
mypy:
153-
name: mypy on ${{ matrix.python-version }}
153+
name: Mypy on ${{ matrix.python-version }}
154154
runs-on: ubuntu-latest
155155
strategy:
156156
fail-fast: false
@@ -219,6 +219,7 @@ jobs:
219219
python-version: ${{env.PYTHON_LATEST}}
220220
- run: python -Im pip install -e .[dev]
221221
- run: python -Ic 'import attr; print(attr.__version__)'
222+
- run: python -Ic 'import attrs; print(attrs.__version__)'
222223

223224
# Ensure everything required is passing for branch protection.
224225
required-checks-pass:

0 commit comments

Comments
 (0)