From ca48dff86bd7c81a4bd3106be9f2dc5082bd8993 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 | 44 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 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..98a8228 --- /dev/null +++ b/.github/workflows/push.yml @@ -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