We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83d46b0 commit 40f7232Copy full SHA for 40f7232
2 files changed
.github/workflows/deps.yaml
.github/workflows/test.yaml
@@ -0,0 +1,32 @@
1
+name: Test
2
+
3
+on: [push]
4
5
+jobs:
6
+ test:
7
+ strategy:
8
+ matrix:
9
+ os: [ubuntu-latest]
10
+ # os: [ubuntu-latest, macOS-latest, windows-latest]
11
12
+ runs-on: ${{ matrix.os }}
13
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v4
17
18
+ - name: Mise
19
+ uses: jdx/mise-action@v2
20
21
+ - name: Cache
22
+ uses: actions/cache@v4
23
+ with:
24
+ path: |
25
+ ~/.m2/repository
26
+ ~/.gitlibs
27
+ ~/.deps.clj
28
+ key: cljdeps-${{ hashFiles('deps.edn') }}
29
+ restore-keys: cljdeps-
30
31
+ - name: Execute Kaocha
32
+ run: mise test
0 commit comments