Skip to content

Create go.yml

Create go.yml #11

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.13', '1.14', '1.15', '1.16', '1.17', '1.18', '1.19', '1.20']
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Test
run: go test -race -coverprofile=coverage.txt -covermode=atomic -v ./...
- run: go tool cover -html=coverage.txt -o coverage.html
- run: bash <(curl -s https://codecov.io/bash)