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:
|
|
|
|
matrix:
|
2021-03-18 00:33:26 +01:00
|
|
|
python-version: [3.8, 3.9]
|
2020-06-08 16:37:59 +02:00
|
|
|
|
|
|
|
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
|
2020-06-08 16:37:59 +02:00
|
|
|
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
|
|
|
|
2020-06-08 16:37:59 +02:00
|
|
|
- name: Test with nosetests
|
|
|
|
run: |
|
|
|
|
poetry run mypy .
|
2021-06-17 02:36:01 +02:00
|
|
|
|