Restructure Practice Tests and Progress Cleanup #19
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: Integration Tests | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| workflow_dispatch: | |
| jobs: | |
| tests: | |
| name: Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: 1.26.0 | |
| - name: Set up gotestfmt | |
| uses: GoTestTools/gotestfmt-action@v2 | |
| # Run tests with pretty formatting, saving og log in /tmp/gotest.log | |
| - name: Run Tests | |
| run: | | |
| set -euo pipefail | |
| go test -json -v ./tests/... 2>&1 | tee /tmp/gotest.log | gotestfmt | |
| # # Upload original go test log as an artifact | |
| # - name: Upload Test Log | |
| # uses: actions/upload-artifact@v6 | |
| # if: always() | |
| # with: | |
| # name: test-log | |
| # path: /tmp/gotest.log | |
| # if-no-files-found: error |