Clojure CI #46
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: Clojure CI | |
on: | |
push: | |
branches: "*" | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
# see: https://github.com/marketplace/actions/setup-java | |
distribution: 'corretto' | |
java-version: '11' | |
- name: Install clojure tools | |
uses: DeLaGuardo/setup-clojure@12.1 | |
with: | |
# see: https://github.com/marketplace/actions/setup-clojure | |
cli: 1.11.1.1429 | |
- name: Run tests | |
run: make test | |
- name: Run coverage tests | |
run: make test-coverage | |
- name: Run generative tests | |
run: make test-generative | |
- name: Run clj-kondo linter | |
run: make lint | |
- name: Run build jar | |
run: make clean build |