Bump deps (#92) #260
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-ci" | |
outdated: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check deps | |
run: docker-compose run --rm check make outdated |