mirror of
https://github.com/TwiN/gatus.git
synced 2024-12-22 23:02:22 +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
|
name: Go
|
||||||
on: [push]
|
on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
|
build-1.12:
|
||||||
build:
|
name: Build with Go 1.12
|
||||||
name: Build
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
- name: Set up Go 1.12
|
||||||
- name: Set up Go 1.13
|
|
||||||
uses: actions/setup-go@v1
|
uses: actions/setup-go@v1
|
||||||
with:
|
with:
|
||||||
go-version: 1.13
|
go-version: 1.12
|
||||||
id: go
|
id: go
|
||||||
|
|
||||||
- name: Check out code into the Go module directory
|
- name: Check out code into the Go module directory
|
||||||
uses: actions/checkout@v1
|
uses: actions/checkout@v1
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
run: go test -mod vendor ./...
|
run: go test -mod vendor ./...
|
||||||
|
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: go build -mod vendor
|
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