glow/.github/workflows/go.yml

44 lines
1.2 KiB
YAML
Raw Normal View History

name: build
2019-12-31 11:15:57 +00:00
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
2020-08-13 19:47:37 +00:00
go-version: [1.13.x, 1.14.x, 1.15.x]
2020-07-29 21:09:38 +00:00
platform: [ubuntu-latest, macos-latest]
2019-12-31 11:15:57 +00:00
runs-on: ${{ matrix.platform }}
env:
GO111MODULE: "on"
2019-12-31 11:15:57 +00:00
steps:
2020-05-18 15:59:37 +00:00
- name: Configure git for private modules
env:
TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
run: git config --global url."https://meowgorithm:${TOKEN}@github.com".insteadOf "https://github.com"
2019-12-31 11:15:57 +00:00
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v1
- name: Download Go modules
run: go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test ./...
- name: Coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
go test -race -covermode atomic -coverprofile=profile.cov ./...
GO111MODULE=off go get github.com/mattn/goveralls
$(go env GOPATH)/bin/goveralls -coverprofile=profile.cov -service=github
2020-08-13 19:47:37 +00:00
if: matrix.go-version == '1.15.x' && matrix.platform == 'ubuntu-latest'