github.com/tacshi/go-ethereum@v0.0.0-20230616113857-84a434e20921/.github/workflows/ci.yml (about) 1 name: CI 2 run-name: CI triggered from @${{ github.actor }} of ${{ github.head_ref }} 3 4 on: 5 workflow_dispatch: 6 pull_request: 7 push: 8 branches: 9 - master 10 11 jobs: 12 run-tests: 13 runs-on: ubuntu-latest 14 15 steps: 16 - uses: actions/checkout@v3 17 18 - name: Set up Go 19 uses: actions/setup-go@v3 20 with: 21 go-version: 1.19 22 23 - name: Test 24 run: make test