Port GHA compose tests to use dctest. #48
Workflow file for this 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
name: Push (build and unit test) | |
on: | |
push: {} | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: {} | |
jobs: | |
clj-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: zulu | |
java-version: 11 | |
- name: Install Clojure and Tools | |
uses: DeLaGuardo/[email protected] | |
with: | |
lein: 'latest' # Leiningen | |
bb: 'latest' | |
- name: Cache Clojure dependencies | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.m2/repository | |
# List all files containing dependencies: | |
key: cljdeps-${{ hashFiles('deps.edn', 'bb.edn') }} | |
restore-keys: cljdeps- | |
- name: Run lein test | |
run: lein test | |
cljs-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Compile cljs | |
run: npx shadow-cljs compile test | |
- name: Run npm tests | |
run: node build/test.js | |
dctest-compose-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: run dctest tests | |
run: | |
# only need dctest and its deps | |
npm install @lonocloud/dctest --no-save --ignore-scripts | |
time node_modules/.bin/dctest --verbose-commands clj-protocol-test test/basics.yaml |