This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
bump to v1.11.26 #190
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go | |
on: | |
push: | |
branches: [ master ] | |
# Sequence of patterns matched against refs/tags | |
tags: | |
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build_and_test: | |
name: Build and test | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
# go: ['1.11', '1.12', '1.13', '1.14'] | |
go: ['1.20'] | |
#env: | |
# COVERALLS_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
steps: | |
- id: go | |
name: Set up Go | |
uses: actions/setup-go@v1 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
run: | | |
#for GOOS in $(go tool dist list|awk -F'/' '{print $1}'|sort -u); do | |
# echo -e "\n\nTESTING FOR $GOOS ...\n" | |
# go test -v -race -coverprofile=profile.cov ./... | |
#done | |
go test -v -race -coverprofile=profile.cov ./... | |
- name: Send coverage | |
uses: shogo82148/actions-goveralls@v1 | |
with: | |
path-to-profile: profile.cov | |
parallel: true | |
# notifies coveralls that all test jobs are finished | |
finish-cov: | |
name: Finish Coverage | |
needs: build_and_test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: shogo82148/actions-goveralls@v1 | |
with: | |
parallel-finished: true | |
do-release: | |
runs-on: ubuntu-latest | |
needs: build_and_test | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') | |