Add individual test case transform exit point (#763) #942
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: test | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Tests | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
with: | |
path: main | |
- name: Checkout test runner | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
with: | |
repository: exercism/clojure-test-runner | |
path: clojure-test-runner | |
- name: setup babashka | |
uses: turtlequeue/setup-babashka@fda33428c8b62fb5bb9802ca7a2c750a6cc11b5a | |
with: | |
babashka-version: 0.8.1 | |
- name: babashka script | |
id: bb_script | |
run: bb main/test.clj | |
# Print the output of the babashka script from the | |
# `bb_script` step | |
- name: Get the script output | |
run: echo "${{ steps.bb_script.outputs.bb_out }}" |