Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
ci: use go 1.15 & 1.16 on CI (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aline Freitas authored Jul 8, 2021
1 parent b360a2b commit 65d74b0
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,25 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.15.x, 1.16.x]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}

steps:
- name: Set up Go 1.13
-
name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.13

- name: Check out code into the Go module directory
go-version: ${{ matrix.go-version }}
-
name: Check out code into the Go module directory
uses: actions/checkout@v2

- name: Verify dependencies
with:
fetch-depth: 0
-
name: Verify dependencies
run: go mod verify

- name: Build
-
name: Build
shell: bash
run: |
go build -v ./cmd/tog

0 comments on commit 65d74b0

Please sign in to comment.