Skip to content

Commit f3bc981

Browse files
committed
Add github test workflow
1 parent 6aaae53 commit f3bc981

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/test.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Tests
2+
on: [push, pull_request]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout
8+
uses: actions/checkout@v3
9+
10+
- name: Prepare dotnet
11+
uses: xt0rted/[email protected]
12+
13+
- name: Prepare Clojure CLR
14+
run: |
15+
dotnet tool install --global Clojure.Main --version 1.12.0-alpha10
16+
dotnet tool install --global Clojure.Cljr --version 0.1.0-alpha5
17+
18+
- name: Run cljr tests
19+
run: cljr -X:test

0 commit comments

Comments
 (0)