Skip to content

System exit 1 on error #9

System exit 1 on error

System exit 1 on error #9

Workflow file for this run

name: Checks
on:
workflow_call:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/restore-deps
- name: Lint
run: make lint-init && make lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/restore-deps
- name: Run tests
env:
DATABASE_HOST_PORT: "localhost:5555"
run: |
docker compose up -d test-postgres
make test-ci