test: Add GitHub Actions workflow instead of CircleCI #4
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: Lint and Test | |
on: push | |
jobs: | |
clj_style: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeLaGuardo/setup-clojure@master | |
with: | |
cljstyle: latest | |
- run: make format-check | |
clj_kondo: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeLaGuardo/setup-clojure@master | |
with: | |
clj-kondo: latest | |
- run: make lint | |
test: | |
needs: [clj_style, clj_kondo] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
java-package: jdk | |
architecture: x64 | |
- uses: DeLaGuardo/setup-clojure@master | |
with: | |
lein: '2.11.2' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18.16.1' | |
cache: 'yarn' | |
cache-dependency-path: yarn.lock | |
- name: Show versions | |
run: | | |
java -version | |
lein version | |
yarn -v | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.m2 | |
~/.lein | |
key: clj-cache-test-${{ hashFiles('project.clj') }} | |
restore-keys: | | |
clj-cache-test- | |
- run: yarn install | |
- name: Run tests | |
run: make test |