Skip to content

Update check mark in migrations list output #169

Update check mark in migrations list output

Update check mark in migrations list output #169

Workflow file for this run

name: Checks
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lint
run: docker-compose run --rm check bash -c "make deps && make lint-init > /dev/null 2>&1 || true && make lint"
- name: Fmt
run: docker-compose run --rm check make fmt-check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test
run: docker-compose run --rm test bash -c "make deps && make test"
check-deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check deps
run: docker-compose run --rm check make check-deps