Production #493
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: Backend code checks | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: ["opened", "synchronize", "reopened", "edited"] | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: Run Flake8 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: "Set up Python" | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: "Install flake8" | |
run: pip install flake8 | |
- name: "Install flake8-django" | |
run: pip install flake8-django | |
- name: "Run flake8" | |
uses: liskin/gh-problem-matcher-wrap@v1 | |
with: | |
linters: flake8 | |
run: flake8 --max-line-length 150 server/ | |
build: | |
name: Build and test | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: server | |
services: | |
db: | |
image: postgres | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: password | |
POSTGRES_DB: github-actions | |
ports: | |
- 5432:5432 | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python Env | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.12" | |
- name: Setup Poetry π | |
uses: snok/install-poetry@v1 | |
with: | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
- name: Cache .venv π¦ | |
id: cached-poetry-dependencies | |
uses: actions/cache@v3.0.6 | |
with: | |
path: server/.venv | |
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} | |
- name: Install dependencies π¨π»βπ» | |
run: poetry install | |
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | |
- name: Run Migrations ποΈ | |
env: | |
API_SECRET_KEY: o!v%_v0zjvc5+_)e!r+o!_uefr2a&)lfgv17$ex=a!ei%!y-_o | |
POSTGRES_HOST: localhost | |
POSTGRES_PASSWORD: password | |
POSTGRES_PORT: 5432 | |
EMAIL_PORT: 1025 | |
FRONTEND_URL: http://localhost:3000 | |
run: | | |
source .venv/bin/activate | |
python manage.py migrate | |
- name: Run tests π§ͺ | |
env: | |
API_SECRET_KEY: o!v%_v0zjvc5+_)e!r+o!_uefr2a&)lfgv17$ex=a!ei%!y-_o | |
JWT_SIGNING_KEY: NjMgNmYgNmQgNmQgNzUgNmUgNjkgNzQgNzkgNzMgNzAgNjkgNzIgNjkgNzQgNjYgNmYgNzUgNmUgNjQgNjEgNzQgNjkgNmYgNmU= | |
POSTGRES_HOST: localhost | |
POSTGRES_PASSWORD: password | |
POSTGRES_PORT: 5432 | |
EMAIL_PORT: 1025 | |
FRONTEND_URL: http://localhost:3000 | |
run: | | |
source .venv/bin/activate | |
python3 -m pip install coverage | |
coverage run manage.py test | |
coverage xml | |
- name: Upload Coverage βοΈ | |
uses: codecov/codecov-action@v3 | |
with: | |
flags: backend | |
files: ./server/coverage.xml |