Skip to content

Add CLI-interface for lein support #254

Add CLI-interface for lein support

Add CLI-interface for lein support #254

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-ci"
outdated:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check deps
run: docker-compose run --rm check make outdated