Skip to content

feat: implement CI

feat: implement CI #3

Workflow file for this run

name: Django CI Nau Financial Manager
on:
push:
branches: [ 85-add-continuous-integration-with-github-actions ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Poetry
run: make install-poetry install-packages
- name: Get all containers up and running
run: make hr-docker
- name: Run Django tests
run: make test
- name: Run pre-commit checks
run: make pre-commit