use errors package in golang v20 to join multiple errors #12
Workflow file for this run
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: test | |
on: ["push", "pull_request"] | |
env: | |
GO_VERSION: "1.22" | |
LINUX_ARCHES: "amd64 386 arm arm64 s390x mips64le ppc64le" | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- uses: actions/checkout@v4 | |
- uses: ibiqlik/action-yamllint@v3 | |
with: | |
format: auto | |
- uses: golangci/golangci-lint-action@v4 | |
with: | |
args: --verbose | |
version: v1.54 | |
build: | |
name: Build all linux architectures | |
needs: lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- uses: actions/checkout@v4 | |
- name: Build on all supported architectures | |
run: | | |
set -e | |
for arch in ${LINUX_ARCHES}; do | |
echo "Building for arch $arch" | |
GOARCH=$arch go build ./... | |
done | |
test-linux: | |
name: Run tests on Linux amd64 | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- uses: actions/checkout@v4 | |
- name: Install test binaries | |
run: | | |
go install github.com/mattn/[email protected] | |
go install github.com/modocache/gover@latest | |
- name: test | |
run: COVERALLS=1 ./test.sh | |
- name: Send coverage to coveralls | |
env: | |
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
PATH=$PATH:$(go env GOPATH)/bin | |
gover | |
goveralls -coverprofile=gover.coverprofile -service=github | |
test-win: | |
name: Build and run tests on Windows | |
needs: build | |
runs-on: windows-latest | |
steps: | |
- name: setup go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- uses: actions/checkout@v4 | |
- name: test | |
run: bash ./test.sh |