📖 Add comprehensive contributor guide #433
Workflow file for this run
This file contains hidden or 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: Run benchmark tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| benchmark: | |
| runs-on: ${{ matrix.os.id }} | |
| strategy: | |
| matrix: | |
| os: | |
| - id: macos-latest | |
| name: mac | |
| - id: windows-latest | |
| name: windows | |
| - id: ubuntu-latest | |
| name: linux | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: '1.23.9' | |
| - name: Run benchmark tests | |
| shell: bash | |
| run: | | |
| go install golang.org/x/perf/cmd/benchstat@latest | |
| go mod tidy | |
| GOMAXPROCS=2 go test -run=^$ -bench=. -benchmem -count=6 $(go list ./... | grep -v 'event') |\ | |
| sed -e 's/cpu:.*/cpu:/g' -e 's/goarch:.*/goarch:/g' > benchmark_results | |
| - name: Display Benchstat results | |
| shell: bash | |
| run: | | |
| benchstat ./benchmarks/${{ matrix.os.name }} benchmark_results > benchmark.diff | |
| ./benchmarks/compare.sh benchmark.diff |