github.com/dominant-strategies/go-quai@v0.28.2/.github/workflows/build-on-pr.yml (about) 1 name: Build on PR 2 on: 3 pull_request: 4 types: 5 - opened 6 - synchronize 7 - reopened 8 jobs: 9 build: 10 runs-on: ubuntu-latest 11 12 steps: 13 - name: Checkout repository 14 uses: actions/checkout@v3 15 16 - uses: actions/setup-go@v4 17 with: 18 go-version: '1.20' 19 20 - name: create network.env from dist 21 run: mv network.env.dist network.env 22 23 - name: build 24 run: make go-quai