File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments