gigasecond: Fix function template #1227
Workflow file for this run
This file contains hidden or 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-24.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@2d4df498c7a578b4f3e906283f9af913590bdec7 | |
| with: | |
| babashka-version: 1.12.196 | |
| - 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 }}" |