mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Fix workflows
This commit is contained in:
parent
659066819a
commit
b927f7064d
2 changed files with 1 additions and 32 deletions
|
|
@ -17,3 +17,4 @@ jobs:
|
|||
# specified without patch version: we always use the latest patch
|
||||
# version.
|
||||
version: v1.33
|
||||
working-directory: orbit/
|
||||
32
orbit/.github/workflows/go.yml
vendored
32
orbit/.github/workflows/go.yml
vendored
|
|
@ -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 ./...
|
||||
Loading…
Reference in a new issue