Skip to content

fix(deps): update module golang.org/x/mod to v0.22.0 [skip changelog] #886

fix(deps): update module golang.org/x/mod to v0.22.0 [skip changelog]

fix(deps): update module golang.org/x/mod to v0.22.0 [skip changelog] #886

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-latest
steps:
- name: set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Unshallow
run: git fetch --prune --unshallow
- name: Prepare build
run: "curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.44.0"
- name: Compile & test
run: make
- name: Integration test
run: make test-integration
- name: run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: --snapshot --skip=publish --clean