Clean up and re-enable Windows workflow

This commit is contained in:
Christian Muehlhaeuser 2020-10-18 18:11:29 +02:00
parent 7f2c30065d
commit d36b9d4838

View file

@ -5,39 +5,33 @@ jobs:
strategy: strategy:
matrix: matrix:
go-version: [1.13.x, 1.14.x, 1.15.x] go-version: [1.13.x, 1.14.x, 1.15.x]
platform: [ubuntu-latest, macos-latest] os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }} runs-on: ${{ matrix.os }}
env: env:
GO111MODULE: "on" GO111MODULE: "on"
steps: steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Configure git for private modules - name: Checkout code
env: uses: actions/checkout@v1
TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
run: git config --global url."https://meowgorithm:${TOKEN}@github.com".insteadOf "https://github.com"
- name: Install Go - name: Download Go modules
uses: actions/setup-go@v1 run: go mod download
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code - name: Build
uses: actions/checkout@v1 run: go build -v ./...
- name: Download Go modules - name: Test
run: go mod download run: go test ./...
- name: Build - name: Coverage
run: go build -v ./... env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Test run: |
run: go test ./... go test -race -covermode atomic -coverprofile=profile.cov ./...
GO111MODULE=off go get github.com/mattn/goveralls
- name: Coverage $(go env GOPATH)/bin/goveralls -coverprofile=profile.cov -service=github
env: if: matrix.go-version == '1.15.x' && matrix.platform == 'ubuntu-latest'
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.platform == 'ubuntu-latest'