diff --git a/.github/workflows/make-release-binaries.yml b/.github/workflows/make-release-binaries.yml new file mode 100644 index 0000000000..5b277668f5 --- /dev/null +++ b/.github/workflows/make-release-binaries.yml @@ -0,0 +1,22 @@ +name: Go + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 1.17 + + - name: Build + run: make all-bitcoin