don't bypass the web of trust (#378) #54
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: build | |
on: | |
pull_request: | |
branches: [ master ] | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ^1.15 | |
- name: Build binaries | |
run: go run build/build.go | |
- name: Run unit tests | |
run: go test ./... | |
- name: Run integration tests | |
working-directory: integrationTest | |
run: umask 0027 ; rm -rf /tmp/bbhome-* && go test -long -nocleanup |