Added util/if+ which allows sharing vars between if condition and the… #106
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: Build and test | |
on: | |
push: | |
branches: | |
- '*' | |
paths: | |
- 'src/**' | |
- 'test/**' | |
- 'project.clj' | |
- 'deps.edn' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Choose Java 11 | |
run: | | |
echo "JAVA_HOME=$JAVA_HOME_11_X64" >> $GITHUB_ENV | |
echo "$JAVA_HOME_11_X64/bin" >> $GITHUB_PATH | |
- run: ./script/test_clj.sh | |
- run: ./script/test_cljs.sh | |
- run: ./script/test_js.sh |