mirror of
https://github.com/TwiN/gatus.git
synced 2024-12-22 14:41:01 +01:00
One step for 1.12, one step for 1.13
This commit is contained in:
parent
f2a663c9d3
commit
ee225c977f
30
.github/workflows/go.yml
vendored
30
.github/workflows/go.yml
vendored
@ -1,24 +1,34 @@
|
||||
name: Go
|
||||
on: [push]
|
||||
jobs:
|
||||
|
||||
build:
|
||||
name: Build
|
||||
build-1.12:
|
||||
name: Build with Go 1.12
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
- name: Set up Go 1.13
|
||||
- name: Set up Go 1.12
|
||||
uses: actions/setup-go@v1
|
||||
with:
|
||||
go-version: 1.13
|
||||
go-version: 1.12
|
||||
id: go
|
||||
|
||||
- name: Check out code into the Go module directory
|
||||
uses: actions/checkout@v1
|
||||
|
||||
- name: Test
|
||||
run: go test -mod vendor ./...
|
||||
|
||||
|
||||
- name: Build
|
||||
run: go build -mod vendor
|
||||
|
||||
build-1.13:
|
||||
name: Build with Go 1.13
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Set up Go 1.13
|
||||
uses: actions/setup-go@v1
|
||||
with:
|
||||
go-version: 1.13
|
||||
id: go
|
||||
- name: Check out code into the Go module directory
|
||||
uses: actions/checkout@v1
|
||||
- name: Test
|
||||
run: go test -mod vendor ./...
|
||||
- name: Build
|
||||
run: go build -mod vendor
|
||||
|
Loading…
Reference in New Issue
Block a user