Add tool versioning with mise #263
Workflow file for this run
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: | |
pull_request: | |
branches: [ master ] | |
workflow_call: | |
jobs: | |
deps: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: jdx/mise-action@v2 | |
- name: Cache Clojure dev dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-clojure-dev-${{ hashFiles('**/deps.edn') }} | |
restore-keys: ${{ runner.os }}-clojure-dev | |
- name: Install Clojure dev deps | |
run: make deps | |
fmt: | |
runs-on: ubuntu-latest | |
needs: [ deps ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: jdx/mise-action@v2 | |
- name: Fmt | |
run: make fmt-check | |
lint: | |
runs-on: ubuntu-latest | |
needs: [ deps ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/restore-deps | |
- name: Lint | |
run: make lint-init && make lint | |
# TODO: remove! | |
# 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" | |
test: | |
runs-on: ubuntu-latest | |
needs: [ deps ] | |
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 | |
outdated: | |
runs-on: ubuntu-latest | |
needs: [ deps ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/restore-deps | |
- name: Outdated deps | |
run: make outdated |