Add missing banner prop (#39) #69
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: | |
push: | |
branches: [ develop ] | |
pull_request: | |
types: [opened, synchronize, edited] | |
branches: [ develop ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.15 | |
- name: Basic checks before building and testing | |
run: ./run_basic_checks.sh | |
- name: Build | |
run: go build -v ./... | |
- name: Disabled local tests | |
run: echo "this should pass when running go test -v ./..." | |
- name: Run tests w.o. failing server build | |
run: go test -v $(go list ./... | grep -v github.com/resonatecoop/id/oauth) |