-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7c36bc6
commit ebac1a4
Showing
5 changed files
with
111 additions
and
60 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,14 @@ jobs: | |
distribution: 'zulu' | ||
java-version: '8' | ||
|
||
- name: Prepare dotnet | ||
uses: xt0rted/[email protected] | ||
|
||
- name: Prepare Clojure CLR | ||
run: | | ||
dotnet tool install --global Clojure.Main --version 1.12.0-alpha10 | ||
dotnet tool install --global Clojure.Cljr --version 0.1.0-alpha4 | ||
- name: Install clojure tools | ||
uses: DeLaGuardo/[email protected] | ||
with: | ||
|
@@ -25,5 +33,8 @@ jobs: | |
key: cljdeps-${{ hashFiles('project.clj') }} | ||
restore-keys: cljdeps- | ||
|
||
- name: Run tests | ||
- name: Run clj and cljs tests | ||
run: lein test-all | ||
|
||
- name: Run cljr tests | ||
run: cljr -X:test |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{:paths ["src"] | ||
:aliases | ||
{:test {:extra-paths ["test"] | ||
:extra-deps {io.github.dmiller/test-runner {:git/tag "v0.5.1clr" :git/sha "814e06f"}} | ||
:exec-fn cognitect.test-runner.api/test | ||
:exec-args {:dirs ["test"]}}}} |
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
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