🐛 fix(workflows): fix docker run command in faas_fn_build_invoke.yml #3
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: Unit tests | |
on: | |
push: | |
branches: | |
- "*" | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout this repo in current branch | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref || github.ref_name }} | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 8 | |
- name: Install Babashka | |
run: bash < <(curl -s https://raw.githubusercontent.com/babashka/babashka/master/install) | |
- name: Run unit tests | |
run: bb tests.clj | |
working-directory: ${{ github.workspace }}/template/bb |