Skip to content

Commit eb846c8

Browse files
committed
Update workflow.
1 parent 9246651 commit eb846c8

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,16 @@ jobs:
2020
- python-version: "3.10"
2121
coverage: 1
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
- name: Set up Python ${{ matrix.python-version }}
25-
uses: actions/setup-python@v3
25+
uses: actions/setup-python@v5
2626
with:
2727
python-version: ${{ matrix.python-version }}
28-
cache: 'pip'
2928
- name: Install dependencies
3029
run: |
3130
python -m pip install --upgrade pip
32-
python -m pip install flake8 pytest pyright
33-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
31+
python -m pip install flake8 pyright
32+
python -m pip install -e ".[dev]"
3433
- name: Lint with flake8
3534
run: |
3635
# stop the build if there are Python syntax errors or undefined names

0 commit comments

Comments
 (0)