forked from clojure/clojurescript
-
Notifications
You must be signed in to change notification settings - Fork 0
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
6ed209c
commit 0982e17
Showing
2 changed files
with
41 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -122,3 +122,40 @@ jobs: | |
- name: Run tests | ||
run: clojure -A:compiler.test:compiler.test.run | ||
|
||
# CLI Tests | ||
cli-test: | ||
name: CLI Tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: DeLaGuardo/[email protected] | ||
with: | ||
tools-deps: '1.10.1.536' | ||
|
||
- name: Cache maven | ||
uses: actions/cache@v2 | ||
env: | ||
cache-name: cache-maven | ||
with: | ||
path: ~/.m2 | ||
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/deps.edn') }} | ||
restore-keys: | | ||
${{ runner.os }}-${{ env.cache-name }}- | ||
- name: Cache gitlibs | ||
uses: actions/cache@v2 | ||
env: | ||
cache-name: cache-gitlibs | ||
with: | ||
path: ~/.gitlibs | ||
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('**/deps.edn') }} | ||
restore-keys: | | ||
${{ runner.os }}-${{ env.cache-name }}- | ||
- name: Build Uberjar | ||
- run: ./script/uberjar | ||
|
||
- name: Run tests | ||
run: clojure -A:cli.test.run |
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