Skip to content

Add docker-compose.ci.yaml and update justfile for CI environment #49

Add docker-compose.ci.yaml and update justfile for CI environment

Add docker-compose.ci.yaml and update justfile for CI environment #49

Workflow file for this run

name: Testing bemore
on: [push, pull_request, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: sudo snap install --edge --classic just
- uses: actions/checkout@v4
- run: just test
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests
directory: ./backend/app/
fail_ci_if_error: true
verbose: true