2020-06-08 16:37:59 +02:00
|
|
|
name: Python application
|
|
|
|
|
2020-11-30 14:09:39 +01:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ main ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ main ]
|
2020-06-08 16:37:59 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
2020-11-20 16:55:17 +01:00
|
|
|
strategy:
|
2022-10-24 11:21:49 +02:00
|
|
|
fail-fast: false
|
2020-11-20 16:55:17 +01:00
|
|
|
matrix:
|
2024-02-05 16:33:46 +01:00
|
|
|
python-version: ["3.10", "3.11", "3.12"]
|
2020-06-08 16:37:59 +02:00
|
|
|
|
|
|
|
steps:
|
2023-09-05 12:16:58 +02:00
|
|
|
- uses: actions/checkout@v4
|
2022-10-09 21:26:48 +02:00
|
|
|
|
2020-11-20 16:55:17 +01:00
|
|
|
- name: Set up Python ${{matrix.python-version}}
|
2023-12-07 11:31:05 +01:00
|
|
|
uses: actions/setup-python@v5
|
2020-06-08 16:37:59 +02:00
|
|
|
with:
|
2020-11-20 16:55:17 +01:00
|
|
|
python-version: ${{matrix.python-version}}
|
|
|
|
|
2024-03-28 17:00:40 +01:00
|
|
|
- name: Install poetry
|
|
|
|
run: pipx install poetry
|
|
|
|
|
2021-06-17 02:55:13 +02:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2024-02-23 01:34:49 +01:00
|
|
|
sudo apt install libfuzzy-dev libmagic1
|
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
|
2020-06-08 16:37:59 +02:00
|
|
|
run: |
|
|
|
|
poetry run mypy .
|