-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GHA: tests/stats in push workflow for all impls
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: Push (compose tests) | ||
|
||
on: | ||
push: {} | ||
pull_request: | ||
branches: [ master ] | ||
workflow_dispatch: {} | ||
|
||
jobs: | ||
tests-and-stats: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Install JavaScript and ClojureScript node modules | ||
run: | | ||
( cd js && npm install ) | ||
( cd cljs && npm install ) | ||
- name: JavaScript Step Tests | ||
run: make test^js | ||
|
||
- name: JavaScript Regression Tests | ||
run: make REGRESS=1 test^js | ||
|
||
- name: Python Step Tests | ||
run: make test^python | ||
|
||
- name: Python Regression Tests | ||
run: make REGRESS=1 test^python | ||
|
||
- name: ClojureScript Step Tests | ||
run: make test^cljs | ||
|
||
- name: ClojureScript Regression Tests | ||
run: make REGRESS=1 test^cljs | ||
|
||
- name: Generate stats | ||
run: | | ||
make stats # Build compressed artifacts | ||
make stats # Without the build noise |