Don't double evaluate schemas in #hawk/malli
(#13)
#54
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: Tests | |
on: | |
push: | |
workflow_dispatch: | |
inputs: | |
debug_enabled: | |
type: boolean | |
description: 'Run the build with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' | |
required: false | |
default: false | |
jobs: | |
kondo: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: DeLaGuardo/clojure-lint-action@master | |
with: | |
check-name: Run clj-kondo | |
clj-kondo-args: >- | |
--lint | |
src | |
test | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
tests: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Prepare JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
- name: Setup Clojure | |
uses: DeLaGuardo/[email protected] | |
with: | |
cli: 1.11.1.1208 | |
- name: Restore cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.m2/repository | |
~/.gitlibs | |
~/.deps.clj | |
key: v1-${{ hashFiles('./deps.edn') }}-postgres | |
restore-keys: | | |
v1-${{ hashFiles('./deps.edn') }}- | |
v1- | |
# to continue the workflow create an empty file `touch continue` | |
# or `sudo touch /continue` while still in an SSH session | |
- name: Setup tmate session | |
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} | |
uses: mxschmitt/action-tmate@v3 | |
with: | |
limit-access-to-actor: true | |
- run: clojure -X:dev:test | |
name: Run tests | |
env: | |
CI: TRUE |