Merge pull request #660 from gotd/feat/update-schema #1292
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: | |
| workflow_dispatch: | |
| jobs: | |
| run: | |
| runs-on: ${{ matrix.runner }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| flags: [""] | |
| arch: | |
| - amd64 | |
| runner: | |
| - ubuntu-latest | |
| go: | |
| - stable | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Get Go environment | |
| id: go-env | |
| run: | | |
| echo "::set-output name=cache::$(go env GOCACHE)" | |
| echo "::set-output name=modcache::$(go env GOMODCACHE)" | |
| - name: Set up cache | |
| uses: actions/cache@v5.0.3 | |
| with: | |
| path: | | |
| ${{ steps.go-env.outputs.cache }} | |
| ${{ steps.go-env.outputs.modcache }} | |
| key: test-${{ runner.os }}-${{ matrix.arch }}-go-${{ matrix.go }}-${{ hashFiles('**/go.sum') }} | |
| restore-keys: | | |
| test-${{ runner.os }}-${{ matrix.arch }}-go-${{ matrix.go }}- | |
| - name: Run tests | |
| env: | |
| GOARCH: ${{ matrix.arch }} | |
| GOFLAGS: ${{ matrix.flags }} | |
| run: go test --timeout 5m ./... | |