chg: reorder tests

pull/219/head
Raphaël Vinot 2021-06-16 17:53:25 -07:00
parent e6a027c82d
commit 0aea7f6607
1 changed files with 8 additions and 7 deletions

View File

@ -21,6 +21,14 @@ jobs:
with:
python-version: ${{matrix.python-version}}
- name: Make sure SRIs are up-to-date
run: |
poetry run tools/generate_sri.py
if $?; then
echo "SRIs not up-to-date, you must run tools/generate_sri.py"
exit 1
fi
- name: Install dependencies
run: |
sudo apt install libfuzzy-dev
@ -31,10 +39,3 @@ jobs:
run: |
poetry run mypy .
- name: Make sure SRIs are up-to-date
run: |
poetry run tools/generate_sri.py
if $?; then
echo "SRIs not up-to-date, you must run tools/generate_sri.py"
exit 1
fi