Bump test/bats from a751f3d
to 902578d
#888
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: Acceptance testing (using bats tests) | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
types: [opened, synchronize, closed] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go: ['1.21'] | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v4.1.6 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- uses: actions/setup-go@v5.0.1 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Build Slim (quick dev) | |
run: make build_dev | |
- name: Run the bats test suite | |
run: ./test/bats/bin/bats test/debug.bats |