Skip to content

Commit

Permalink
ci: run benchmarks (job_go_bench)
Browse files Browse the repository at this point in the history
  • Loading branch information
altergui committed Jul 5, 2023
1 parent 042430e commit 6d00303
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,18 @@ jobs:
if: github.event_name == 'push' # this is limited to selected branches at the beginning of this file
run: go test -coverprofile=unit.covdata.txt -vet=off -timeout=15m -race ./... # note that -race can easily make the crypto stuff 10x slower

job_go_bench:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go environment
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Run Go bench
run: go test -run='^$' -bench=. ./...

job_compose_test:
runs-on: [self-hosted, ci2-1]
steps:
Expand Down

0 comments on commit 6d00303

Please sign in to comment.