1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
name: benchmark
on:
# Test new changes
pull_request:
push:
branches:
# Record on merges to main
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
benchmark:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: bazel-contrib/setup-bazel@0.15.0
with:
bazelisk-cache: true
disk-cache: ${{ github.workflow }}
repository-cache: true
- uses: ./.github/actions/bazel-benchmark
- uses: actions/upload-artifact@v5
with:
name: event.json
path: ${{ github.event_path }}
|