New rule(s): Wrong Usage of the MatchError
gomega Matcher
#239
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: CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.54.1 | |
skip-go-installation: true | |
skip-pkg-cache: true | |
args: --timeout=5m | |
- name: Build | |
run: make | |
- name: Test | |
run: go test -covermode=count -coverprofile cover.out ./... | |
- uses: shogo82148/actions-goveralls@v1 | |
with: | |
path-to-profile: cover.out | |
- name: Functional Test | |
run: make test |