We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31e2166 commit 05ae41fCopy full SHA for 05ae41f
1 file changed
.github/workflows/lint.yml
@@ -28,14 +28,12 @@ jobs:
28
GH_TOKEN: ${{ github.token }}
29
SAGE_CI_FIXES_FROM_REPOSITORIES: ${{ vars.SAGE_CI_FIXES_FROM_REPOSITORIES }}
30
31
- - name: Set up Python
32
- uses: actions/setup-python@v5
33
- with:
34
- python-version: 3.9
35
-
36
- - name: Install dependencies
+ - name: Install test prerequisites
37
id: deps
38
- run: pip install tox
+ # From docker.yml
+ run: |
+ sudo DEBIAN_FRONTEND=noninteractive apt-get update
+ sudo DEBIAN_FRONTEND=noninteractive apt-get install tox
39
40
- name: Code style check with ruff-minimal
41
if: (success() || failure()) && steps.deps.outcome == 'success'
0 commit comments