update changelog #5
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 Tests | |
on: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Install rlwrap | |
run: sudo apt-get install -y rlwrap | |
- name: Install Clojure Tools | |
uses: DeLaGuardo/[email protected] | |
with: | |
cli: latest | |
- name: Run tests | |
run: clj -X:test |