feat(cannon): Create BEACON_API_ETH_V2_BEACON_BLOCK_V2 deriver #556
Workflow file for this run
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: Go Test | |
on: | |
pull_request: | |
workflow_dispatch: | |
branches: [ '**' ] | |
jobs: | |
full_ci: | |
strategy: | |
matrix: | |
go_version: [ 1.19.x ] | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go_version }} | |
- name: run tests | |
run: go test -json ./... > test.json | |
- name: Annotate tests | |
if: always() | |
uses: guyarb/golang-test-annotations@v0.6.0 | |
with: | |
test-results: test.json | |