Skip to content

Commit 05ae41f

Browse files
author
Matthias Koeppe
committed
.github/workflows/lint.yml: Install tox from ubuntu, as done in build.yml etc.
1 parent 31e2166 commit 05ae41f

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

.github/workflows/lint.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,12 @@ jobs:
2828
GH_TOKEN: ${{ github.token }}
2929
SAGE_CI_FIXES_FROM_REPOSITORIES: ${{ vars.SAGE_CI_FIXES_FROM_REPOSITORIES }}
3030

31-
- name: Set up Python
32-
uses: actions/setup-python@v5
33-
with:
34-
python-version: 3.9
35-
36-
- name: Install dependencies
31+
- name: Install test prerequisites
3732
id: deps
38-
run: pip install tox
33+
# From docker.yml
34+
run: |
35+
sudo DEBIAN_FRONTEND=noninteractive apt-get update
36+
sudo DEBIAN_FRONTEND=noninteractive apt-get install tox
3937
4038
- name: Code style check with ruff-minimal
4139
if: (success() || failure()) && steps.deps.outcome == 'success'

0 commit comments

Comments
 (0)