Skip to content

chore(deps-dev): bump ember-notify from 6.0.3 to 6.0.4 in /frontend (#6) #80

chore(deps-dev): bump ember-notify from 6.0.3 to 6.0.4 in /frontend (#6)

chore(deps-dev): bump ember-notify from 6.0.3 to 6.0.4 in /frontend (#6) #80

Workflow file for this run

---
name: Backend CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the prod image
working-directory: ./backend
run: |
docker build .
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lint the code
run: |
echo "UID=$UID" > .env
docker compose run --rm backend ruff format --check
docker compose run --rm backend ruff check . --output-format=github
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set ENV vars
run: echo "UID=$UID" > .env
- 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