fix(docs): update FAsset descriptions to prepare for DOGE launch #725
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 | |
| 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@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: stable | |
| - name: Install dependencies | |
| run: go get . | |
| - name: Run Tests | |
| run: | | |
| go test ./coston2 -v | |
| go test ./flare -v | |
| # - name: Lint with golangci-lint | |
| # uses: golangci/golangci-lint-action@v6 | |
| # with: | |
| # version: v1.60 |