lookyloo/.github/workflows/mypy.yml

42 lines
895 B
YAML
Raw Normal View History

name: Python application
2020-11-30 14:09:39 +01:00
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
2020-11-20 16:55:17 +01:00
strategy:
matrix:
2021-12-03 10:51:50 +01:00
python-version: ["3.8", "3.9", "3.10"]
steps:
2020-11-20 16:55:17 +01:00
- uses: actions/checkout@v2
- name: Set up Python ${{matrix.python-version}}
uses: actions/setup-python@v2
with:
2020-11-20 16:55:17 +01:00
python-version: ${{matrix.python-version}}
2021-06-17 02:55:13 +02:00
- name: Install dependencies
run: |
sudo apt install libfuzzy-dev
python -m pip install --upgrade pip poetry
2021-06-17 02:56:24 +02:00
poetry install
2021-06-17 02:59:55 +02:00
echo LOOKYLOO_HOME="`pwd`" >> .env
2021-06-17 03:25:40 +02:00
poetry run tools/3rdparty.py
2021-06-17 02:53:25 +02:00
- name: Make sure SRIs are up-to-date
run: |
poetry run tools/generate_sri.py
2021-06-17 03:12:37 +02:00
git diff website/web/sri.txt
2021-06-17 03:28:57 +02:00
git diff --quiet website/web/sri.txt
2021-06-17 02:53:25 +02:00
2021-12-03 10:51:50 +01:00
- name: Run MyPy
run: |
poetry run mypy .
2021-06-17 02:36:01 +02:00