Clojure #122
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 | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: DeLaGuardo/setup-clj-kondo@master | |
with: {version: '2020.04.05'} | |
- uses: actions/checkout@v2 | |
- name: Lint | |
run: clj-kondo --lint . | |
- name: Install dependencies, Run syntax conformance checks | |
run: lein do with-profile uberjar deps, cljfmt check | |
- name: Run tests | |
run: lein coverage --junit --lcov | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v2 | |
if: always() | |
with: | |
report_paths: 'target/coverage/junit.xml' |