This repository has been archived by the owner on May 13, 2024. It is now read-only.
chore(ci): test.yaml only on push to master #40
Workflow file for this run
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: Test | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/cache@v3 | |
with: | |
path: .venv | |
key: poetry-${{ hashFiles('poetry.lock')}} | |
restore-keys: | | |
peotry- | |
- name: Build the project | |
run: | | |
echo "ENV=dev" > .env | |
docker-compose up -d --build backend | |
- name: Lint the code | |
run: | | |
docker-compose run --rm backend black --check . | |
docker-compose run --rm backend flake8 | |
- name: Check for missing migrations | |
run: docker-compose run --rm backend python manage.py makemigrations --check --dry-run --no-input | |
- name: Run pytest | |
run: docker-compose run --rm backend pytest --no-cov-on-fail --cov --create-db -vv |