Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

Update README.md

Update README.md #485

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
GO111MODULE: on
strategy:
matrix:
go: [ '1.19.x', '1.20.x' ]
steps:
- name: Setup go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: dump dependencies (for nancy)
run: go list -json -m all > go.list
- name: Nancy (deps vulnerabilities)
uses: sonatype-nexus-community/nancy-github-action@main
- name: golangci-lint
with: { version: latest }
uses: golangci/golangci-lint-action@v3
- name: Cache go mod
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.go }}-
- name: Tests
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }} #required
file: ./coverage.txt
fail_ci_if_error: true #optional (default = false)
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
if: startsWith(github.ref, 'refs/tags/')
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GO_RELEASER_TOKEN }}