ensure we have resolvable symbols in spec forms we generate (#13) #267
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: Test | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Prepare java | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'zulu' | |
architecture: 'x64' | |
- name: Install clojure tools | |
uses: DeLaGuardo/setup-clojure@master | |
with: | |
cli: 1.11.1.1182 | |
- name: Run clj tests | |
run: ./bin/kaocha clj | |
- name: Run cljs tests | |
run: ./bin/kaocha cljs |