Add support for additional maven repositories #86
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: tests | |
on: | |
workflow_dispatch: # allows manual triggering | |
push: | |
paths-ignore: | |
- "**.md" | |
- "docs/**" | |
- ".github/**" | |
branches: | |
- main | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
- "docs/**" | |
- ".github/**" | |
jobs: | |
ci-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@main | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- name: Clojure tests | |
run: | | |
nix develop --command kaocha | |
- name: Integration tests | |
run: | | |
nix develop --command bats --timing test | |
echo "Derivations:" | |
cat "/tmp/.cljnix-derivations" |