Skip to content

Commit cfa497a

Browse files
author
Rudy Puig
committed
chore: fix workflow installation (wat)
1 parent 5735b7c commit cfa497a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222
cache: 'pip'
23-
- run: python -m pip install --quiet --upgrade pip setuptools
24-
- run: python -m pip install --editable '.[dev,test]'
25-
- run: python -m ruff check -q --diff --output-format=full .
26-
- run: python -m ruff format -q --diff --check .
23+
- run: python3 -m pip install --quiet --upgrade pip setuptools
24+
- run: python3 -m pip install --editable '.[dev,test]'
25+
- run: python3 -m ruff check -q --diff --output-format=full .
26+
- run: python3 -m ruff format -q --diff --check .
2727
continue-on-error: true
28-
- run: python -m pytest -vvv --cov --cov-context=test --cov-report=xml
28+
- run: python3 -m pytest -vvv --cov --cov-context=test --cov-report=xml

0 commit comments

Comments
 (0)