chore(deps): bump the actions-all group with 2 updates #1622
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: Test Go Examples | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "examples/developer-hub-go/**" | |
| - ".github/workflows/test-go-examples.yml" | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: Test Go Examples | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./examples/developer-hub-go | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: stable | |
| cache-dependency-path: "examples/developer-hub-go/go.sum" | |
| - run: go mod download | |
| - run: go vet ./... | |
| - name: Run Tests | |
| run: | | |
| go test ./coston2 -v | |
| go test ./flare -v |