Print unimplemented algorithms after codegen #30
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: CI | |
on: | |
push: | |
branches: ["**"] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 2 | |
- uses: DeLaGuardo/clojure-lint-action@master | |
with: | |
clj-kondo-args: --lint src test | |
check-name: clj-kondo | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install-dependencies | |
run: lein deps | |
- name: run-tests | |
run: lein ci |