Skip to content
This repository has been archived by the owner on Apr 20, 2021. It is now read-only.

Commit

Permalink
updated actions to use xplat golang
Browse files Browse the repository at this point in the history
Signed-off-by: Mike Lloyd <mike.lloyd@gsa.gov>
  • Loading branch information
siennathesane committed Nov 1, 2019
1 parent 0742026 commit 9081411
Showing 1 changed file with 72 additions and 1 deletion.
73 changes: 72 additions & 1 deletion actions.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
jobs:
build:
build-ubuntu-1804:
runs-on: ubuntu-18.04
strategy:
matrix:
Expand All @@ -11,4 +11,75 @@ jobs:
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- run: go build -v ./...
- run: go test -v ./...
build-ubuntu-1604:
runs-on: ubuntu-16.04
strategy:
matrix:
go: [ '1.11.x', '1.12.x', '1.13.x' ]
name: go${{ matrix.go }} test
steps:
- uses: actions/checkout@master
- name: Setup go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- run: go build -v ./...
- run: go test -v ./...
build-ubuntu-latest:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.11.x', '1.12.x', '1.13.x' ]
name: go${{ matrix.go }} test
steps:
- uses: actions/checkout@master
- name: Setup go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- run: go build -v ./...
- run: go test -v ./...
build-macos-1014:
runs-on: macos-10.14
strategy:
matrix:
go: [ '1.11.x', '1.12.x', '1.13.x' ]
name: go${{ matrix.go }} test
steps:
- uses: actions/checkout@master
- name: Setup go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- run: go build -v ./...
- run: go test -v ./...
build-macos-latest:
runs-on: macos-latest
strategy:
matrix:
go: [ '1.11.x', '1.12.x', '1.13.x' ]
name: go${{ matrix.go }} test
steps:
- uses: actions/checkout@master
- name: Setup go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- run: go build -v ./...
- run: go test -v ./...
build-windows-latest:
runs-on: windows-latest
strategy:
matrix:
go: [ '1.11.x', '1.12.x', '1.13.x' ]
name: go${{ matrix.go }} test
steps:
- uses: actions/checkout@master
- name: Setup go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- run: go build -v ./...
- run: go test -v ./...

0 comments on commit 9081411

Please sign in to comment.