summaryrefslogtreecommitdiff
path: root/.github/workflows/go.yml
diff options
context:
space:
mode:
authorJames Mills <prologic@shortcircuit.net.au>2021-07-13 08:34:56 +1000
committerJames Mills <prologic@shortcircuit.net.au>2021-07-13 08:34:56 +1000
commit02e2aebc49d793fa2100a3504cf8b991d4e384ac (patch)
tree2793ffc8577071add3f45508320cfa0c5175a893 /.github/workflows/go.yml
parent5c2b402a8aaa2d1693f64f2ca6576597bf28b339 (diff)
Remove Github workflows
Diffstat (limited to '.github/workflows/go.yml')
-rw-r--r--.github/workflows/go.yml27
1 files changed, 0 insertions, 27 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml
deleted file mode 100644
index 23322ff..0000000
--- a/.github/workflows/go.yml
+++ /dev/null
@@ -1,27 +0,0 @@
----
-name: Go
-on:
- push:
- branches:
- - master
- pull_request:
-jobs:
- test:
- name: Build and Test
- strategy:
- matrix:
- go-version: [1.14.x, 1.15.x, 1.16.x]
- platform: [ubuntu-latest, macos-latest]
- runs-on: ${{ matrix.platform }}
- steps:
- - name: Setup Go ${{ matrix.go-version }}
- uses: actions/setup-go@v1
- with:
- go-version: ${{ matrix.go-version }}
- id: go
- - name: Checkout
- uses: actions/checkout@v1
- - name: Build
- run: go build -v .
- - name: Test
- run: go test -v -race .