[release] 0.0.5 #41
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
# Copyright 2021- Rahul De | |
# | |
# Use of this source code is governed by an MIT-style | |
# license that can be found in the LICENSE file or at | |
# https://opensource.org/licenses/MIT. | |
name: Tests | |
on: | |
push: | |
paths-ignore: | |
- "**.md" | |
jobs: | |
build: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout code" | |
uses: "actions/checkout@v4" | |
- name: "Prepare Java" | |
uses: "actions/setup-java@v4" | |
with: | |
distribution: 'temurin' | |
java-version: '22' | |
- name: "Prepare tools-deps" | |
uses: "DeLaGuardo/setup-clojure@master" | |
with: | |
cli: latest | |
- name: "Apply Cache" | |
uses: "actions/cache@v4" | |
with: | |
path: | | |
~/.m2/repository | |
key: "${{ runner.os }}-navi-${{ hashFiles('deps.edn') }}" | |
restore-keys: "${{ runner.os }}-navi-" | |
- name: "Run tests" | |
run: "clojure -M:test" |