good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 4e15d756 authored by Anmol Sethi's avatar Anmol Sethi
Browse files

ci/bench.sh: Add

parent a6b94648
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,15 @@ concurrency:
cancel-in-progress: true
jobs:
ci:
bench:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: ./go.mod
- run: AUTOBAHN=1 ./ci/bench.sh
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
......
#!/bin/sh
set -eu
cd -- "$(dirname "$0")/.."
go test --bench=. "$@" ./...
(
cd ./internal/thirdparty
go test --bench=. "$@" ./...
)
......@@ -5,3 +5,4 @@ cd -- "$(dirname "$0")"
./ci/fmt.sh
./ci/lint.sh
./ci/test.sh
./ci/bench.sh
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment