chore(deps): Update golang.org/x/exp digest to 746e56f (#64) #198
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: Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| go: [ "oldstable", "stable" ] | |
| platform: [ ubuntu-latest, macos-latest, windows-latest ] | |
| runs-on: ${{ matrix.platform }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| cache: true | |
| go-version: ${{ matrix.go }} | |
| - name: Install dependencies | |
| run: go mod tidy | |
| - name: Run tests | |
| run: go test -timeout 1h ./... |