Skip to content

Commit 91acaa6

Browse files
committed
Add workflow
1 parent 9425bf5 commit 91acaa6

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Diff for: .github/workflows/test.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
- name: Run cljr tests
18+
run: cljr -X:test

0 commit comments

Comments
 (0)