Skip to content

Commit 40f7232

Browse files
committed
Remove the auto update, not a fan, add test CI
1 parent 83d46b0 commit 40f7232

2 files changed

Lines changed: 32 additions & 34 deletions

File tree

.github/workflows/deps.yaml

Lines changed: 0 additions & 34 deletions
This file was deleted.

.github/workflows/test.yaml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)