Bump test/test_helper/bats-assert from f1e9280 to 697471b
#443
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: 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/[email protected] | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| - uses: actions/[email protected] | |
| 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 | |
| continue-on-error: true # At least until we rewrite the tests to reflect recent changes in the debug command |