chore(deps): bump the testify-modules group across 32 directories with 1 update #556
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
| on: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| paths: | |
| - 'sqlite3/**' | |
| pull_request: | |
| paths: | |
| - 'sqlite3/**' | |
| name: "Tests Sqlite3" | |
| jobs: | |
| Tests: | |
| strategy: | |
| matrix: | |
| go-version: | |
| - 1.23.x | |
| - 1.24.x | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Fetch Repository | |
| uses: actions/checkout@v4 | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '${{ matrix.go-version }}' | |
| - name: Test SQLite3 - with -race check | |
| if: runner.os != 'Windows' | |
| run: cd ./sqlite3 && go test ./... -v -race | |
| - name: Test SQLite3 - without -race check | |
| if: runner.os == 'Windows' | |
| run: cd ./sqlite3 && go test ./... -v |