mirror of
https://github.com/Maks1mS/bubbles.git
synced 2024-12-25 15:04:39 +03:00
38 lines
1000 B
YAML
38 lines
1000 B
YAML
|
name: build
|
||
|
on: [push, pull_request]
|
||
|
jobs:
|
||
|
test:
|
||
|
strategy:
|
||
|
matrix:
|
||
|
go-version: [1.13.x, 1.14.x, 1.15.x]
|
||
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
env:
|
||
|
GO111MODULE: "on"
|
||
|
steps:
|
||
|
- name: Install Go
|
||
|
uses: actions/setup-go@v1
|
||
|
with:
|
||
|
go-version: ${{ matrix.go-version }}
|
||
|
|
||
|
- name: Checkout code
|
||
|
uses: actions/checkout@v2
|
||
|
|
||
|
- 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
|
||
|
if: matrix.go-version == '1.15.x' && matrix.os == 'ubuntu-latest'
|