Skip to content

Update GitHub Actions workflow for tests #52

Update GitHub Actions workflow for tests

Update GitHub Actions workflow for tests #52

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
- name: Cache Docker images.
uses: ScribeMD/[email protected]
with:
key: docker-${{ hashFiles('docker-compose.ci.yml') }}
- run: just test
- uses: codecov/codecov-action@v4-beta
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests
working-directory: ./backend/app/
directory: ./backend/app/
fail_ci_if_error: true
verbose: true