fix: read-offchain-feeds guide links, dev hub links, go generate etc. #15
This file contains 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 | |
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: Lint with golangci-lint | |
# uses: golangci/golangci-lint-action@v6 | |
# with: | |
# version: v1.59 |