Refactor ginkgo handler #339
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@v5 | |
with: | |
go-version-file: go.mod | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.61.0 | |
skip-pkg-cache: true | |
args: --timeout=5m | |
- name: Unit Test and Coverage | |
run: go test -covermode=count -coverprofile cover.out ./... | |
- uses: shogo82148/actions-goveralls@v1 | |
with: | |
path-to-profile: cover.out | |
- name: CLI Test | |
run: make test-cli | |
# make sure we can build the cli | |
- name: Build | |
run: make |