Skip to content

v0.3

v0.3 #67

Workflow file for this run

name: CI build
on: [push]
jobs:
ci:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
# It is important to install java before installing clojure tools which needs java
# exclusions: babashka, clj-kondo and cljstyle
- name: Prepare java
uses: actions/setup-java@v4.6.0
with:
distribution: 'zulu'
java-version: '21'
- name: Install clojure tools
uses: DeLaGuardo/setup-clojure@13.1
with:
# Install just one or all simultaneously
# The value must indicate a particular version of the tool, or use 'latest'
# to always provision the latest version
cli: 1.12.0.1488 # Clojure CLI based on tools.deps
clj-kondo: 2024.11.14 # Clj-kondo
cljfmt: 0.13.0 # cljfmt
- uses: actions/checkout@v3
- name: Install dependencies
run: clojure -P
- name: Run tests
run: clojure -T:build ci