chore: bump version number since breaking change #12
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: Tests | |
on: | |
- push | |
- pull_request | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Go environment | |
uses: actions/setup-go@v5.0.2 | |
with: | |
go-version: 1.23 | |
- name: Checkout code | |
uses: actions/checkout@v4.1.7 | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@v6.1.0 | |
- name: WriteGoList | |
run: go list -json -m all > go.list | |
- name: nancy | |
uses: sonatype-nexus-community/nancy-github-action@main | |
- name: Run Keycloak | |
run: | | |
make start-keycloak | |
sleep 15 | |
- name: Unit Tests | |
run: | | |
go test -failfast -race -cover -coverprofile=coverage.txt -covermode=atomic -p 100 -cpu 1,2 -bench . -benchmem > test.log | |
cat test.log | |
- name: Failed Logs | |
if: failure() | |
run: | | |
cat test.log | |
docker ps | |
docker logs keycloak | |
- name: CodeCov | |
uses: codecov/codecov-action@v4.5.0 | |
with: | |
file: ./coverage.txt | |
# Publish benchmarks for the main branch only | |
- name: Store Benchmark Result | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
uses: rhysd/github-action-benchmark@v1.20.3 | |
with: | |
# What benchmark tool the output.txt came from | |
tool: "go" | |
# Where the output from the benchmark tool is stored | |
output-file-path: test.log | |
# Push and deploy GitHub pages branch automatically | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
auto-push: true | |
# Updating go report card for main branch only | |
- name: GoReportCard | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
run: curl --fail --request POST "https://goreportcard.com/checks" --data "repo=github.com/Nerzal/gocloak" |