Skip to content

build(deps): bump gitlab.com/gitlab-org/api/client-go from 0.116.0 to 0.118.0 #2257

build(deps): bump gitlab.com/gitlab-org/api/client-go from 0.116.0 to 0.118.0

build(deps): bump gitlab.com/gitlab-org/api/client-go from 0.116.0 to 0.118.0 #2257

Workflow file for this run

name: Benchmark Go code
on:
pull_request:
branches:
- main
permissions:
pull-requests: write
jobs:
benchmark:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
show-progress: false
- name: Set up Go
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0
with:
go-version-file: go.ver
cache: false
- name: Fetch test rules
run: make -C cmd/pint/bench fetch
- name: Benchmark PR branch
run: |
make benchmark | tee new.txt
- name: Benchmark main branch
run: |
git fetch origin main
git reset --hard FETCH_HEAD
make benchmark | tee old.txt
- name: Diff benchmarks
run: |
git reset --hard ${GITHUB_SHA}
make benchmark-diff
- name: Report
if: ${{ github.event.pull_request.head.repo.full_name == 'cloudflare/pint' }}
uses: thollander/actions-comment-pull-request@24bffb9b452ba05a4f3f77933840a6a841d1b32b # v3.0.1
with:
file-path: benchstat.txt
comment-tag: benchstat