feat: add interfaces to make scheduler chain-family agnostic (#155)
#276
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: Build | |
| on: | |
| push: | |
| paths: | |
| - "cmd/**" | |
| - "pkg/**" | |
| - ".github/workflows/build.yml" | |
| jobs: | |
| build_bif: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - uses: smartcontractkit/tool-versions-to-env-action@aabd5efbaf28005284e846c5cf3a02f2cba2f4c2 # v1.0.8 | |
| id: tool-versions | |
| - name: Setup go ${{ steps.tool-versions.outputs.golang_version }} | |
| uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 | |
| with: | |
| go-version: ${{ steps.tool-versions.outputs.golang_version }} | |
| - name: Make build | |
| run: make build | |
| - name: Make clean | |
| run: make clean |