Fix workflows

This commit is contained in:
Tomas Touceda 2021-08-05 13:16:49 -03:00
parent 659066819a
commit b927f7064d
2 changed files with 1 additions and 32 deletions

View file

@ -17,3 +17,4 @@ jobs:
# specified without patch version: we always use the latest patch
# version.
version: v1.33
working-directory: orbit/

View file

@ -1,32 +0,0 @@
name: build-go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.15
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...