Merge pull request #1512 from sson68x/modified_notification_models #1242
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Workflow | |
on: | |
pull_request: | |
branches: [develop] | |
workflow_dispatch: | |
push: | |
jobs: | |
python-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Set up python | |
id: setup-python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "^3.9" | |
- name: Load cached Poetry installation | |
uses: actions/cache@v2 | |
with: | |
path: ~/.local # the path depends on the OS | |
key: dotlocal-${{ runner.os }}-${{ hashFiles('.github/workflows/main.yml') }} | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: "1.2.1" | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
installer-parallel: true | |
- name: Load cached venv | |
id: cached-poetry-dependencies | |
uses: actions/cache@v2 | |
with: | |
path: .venv | |
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }} | |
- name: Install dependencies | |
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | |
run: poetry install --no-interaction --no-root | |
- name: Run migrations | |
run: poetry run python project/manage.py migrate | |
- name: Collect static files | |
run: poetry run python project/manage.py collectstatic --no-input | |
- name: Run tests | |
env: | |
CIVIWIKI_LOCAL_NAME: True | |
DJANGO_SETTINGS_MODULE: core.settings | |
run: | | |
cd project | |
poetry run pytest -p no:warning | |
- name: Lint | |
uses: py-actions/flake8@v2 | |
with: | |
ignore: "E203,W503" | |
exclude: "**/migrations/*.py" | |
max-line-length: "88" | |
path: "project" | |
plugins: "flake8-bugbear flake8-black" |