From 35d9af993201d5fdce9308ba6665634d0302470a Mon Sep 17 00:00:00 2001 From: Joel Martin Date: Mon, 18 Mar 2024 19:24:54 -0400 Subject: [PATCH] GHA: tests/stats in push workflow for all impls --- .github/workflows/push.yml | 39 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/push.yml diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml new file mode 100644 index 0000000..f7659c0 --- /dev/null +++ b/.github/workflows/push.yml @@ -0,0 +1,39 @@ +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: JavaScript Step Tests + run: make test^js + + - name: JavaScript Regression Tests + run: REGRESS=1 make test^js + + - name: Python Step Tests + run: make test^python + + - name: Python Regression Tests + run: REGRESS=1 make test^python + + - name: ClojureScript Step Tests + run: make test^cljs + + - name: ClojureScript Regression Tests + run: REGRESS=1 make test^cljs + + - name: Generate stats + run: | + make stats # Build compressed artifacts + make stats # Without the build noise