Skip to content

Bump the go-dependencies group with 4 updates #224

Bump the go-dependencies group with 4 updates

Bump the go-dependencies group with 4 updates #224

Workflow file for this run

---
# .github/workflows/build.yml
name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Set up Go
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
with:
go-version-file: go.mod
- name: Build
run: go build -v ./...
- name: Test with Coverage
run: |
go test -v -coverprofile=coverage.out ./...
go tool cover -html=coverage.out -o coverage.html
go tool cover -func=coverage.out > coverage.txt
- name: Upload Coverage Artifacts
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: coverage-report
path: |
coverage.html
coverage.txt
- name: Post Coverage Summary
run: |
{
echo "### Code Coverage Report"
echo '```'
cat coverage.txt
echo '```'
} >> "$GITHUB_STEP_SUMMARY"