-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace GH Actions workflow with common, reusable workflow (#21)
Signed-off-by: Platform Engineering Bot <platform-engineering@redhat.com> Co-authored-by: redhat-renovate-bot <168419866+redhat-renovate-bot@users.noreply.github.com> Co-authored-by: Webb Scales <wscales@redhat.com>
- Loading branch information
1 parent
5be7def
commit 9a3a883
Showing
2 changed files
with
21 additions
and
66 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,14 @@ | ||
name: Build | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
env: | ||
go_version: 1.21.6 | ||
jobs: | ||
golangci-lint: | ||
name: golangci-lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Pin Golang version for linting | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ env.go_version }} | ||
- name: Run golangci-lint | ||
uses: golangci/golangci-lint-action@v4 | ||
with: | ||
version: v1.55.2 | ||
test: | ||
name: go test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ${{ env.go_version }} | ||
- name: Set up gotestfmt | ||
uses: GoTestTools/gotestfmt-action@v2 | ||
- uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/go/pkg/mod | ||
~/.cache/go-build | ||
key: go-test-${{ hashFiles('**/go.sum') }} | ||
restore-keys: go-test- | ||
- name: Run go test | ||
run: | | ||
set -euo pipefail | ||
go generate | ||
go test -coverprofile /tmp/coverage.out -json -v ./... 2>&1 | tee /tmp/gotest.log | gotestfmt | ||
echo "# Code coverage summary" > /tmp/coverage.md | ||
echo "|File|Type|Coverage|" >> /tmp/coverage.md | ||
echo "|----|----|--------|" >> /tmp/coverage.md | ||
go tool cover -func /tmp/coverage.out | sed -e 's/\s\s*/|/g' -e 's/^/|/g' -e 's/$/|/g' >> /tmp/coverage.md | ||
cat /tmp/coverage.md >> $GITHUB_STEP_SUMMARY | ||
echo "::group::Code coverage summary" | ||
go tool cover -func /tmp/coverage.out | ||
echo "::endgroup::" | ||
- name: Upload test log | ||
uses: actions/upload-artifact@v4 | ||
if: always() | ||
with: | ||
name: test-results | ||
path: | | ||
/tmp/gotest.log | ||
/tmp/coverage.out | ||
/tmp/coverage.md | ||
if-no-files-found: error | ||
name: Build | ||
on: | ||
push: | ||
branches: | ||
- main | ||
tags: | ||
- v* | ||
pull_request: | ||
jobs: | ||
lint_and_test: | ||
name: lint and test | ||
uses: arcalot/arcaflow-reusable-workflows/.github/workflows/go_lint_and_test.yaml@main | ||
with: | ||
go_version: ${{ vars.ARCALOT_GO_VERSION }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"statistic": { | ||
"excludes": [ | ||
"mocks/.*" | ||
] | ||
} | ||
} |