aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/exp/buckit/.github/workflows/go.yml
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-10-27 19:24:57 -0700
committerFranck Cuny <franck@fcuny.net>2022-10-27 19:24:57 -0700
commita5679641aa0eb9e872605b70c263c3e950132647 (patch)
tree7f4a9670365f8f13152d1070e5d5803f3618aa91 /users/fcuny/exp/buckit/.github/workflows/go.yml
parentfeat(ops/github): archive notes.fcuny.net (diff)
downloadinfra-a5679641aa0eb9e872605b70c263c3e950132647.tar.gz
ref(users/fcuny): and just like that ...
Diffstat (limited to '')
-rw-r--r--users/fcuny/exp/buckit/.github/workflows/go.yml35
1 files changed, 0 insertions, 35 deletions
diff --git a/users/fcuny/exp/buckit/.github/workflows/go.yml b/users/fcuny/exp/buckit/.github/workflows/go.yml
deleted file mode 100644
index cda28c1..0000000
--- a/users/fcuny/exp/buckit/.github/workflows/go.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-name: 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.16
- id: go
-
- - name: Check out code into the Go module directory
- uses: actions/checkout@v2
-
- - name: Go fmt
- run: go fmt ./...
-
- - name: Go vet
- run: go vet ./...
-
- - name: Test
- run: go test -race -v ./...
-
- - name: Build
- run: go build -v ./...