aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/trunk.yml
blob: ad6b9094461e21d0ac51002434be57d9611f3ba6 (plain) (blame)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# //.github/workflows:trunk.yml
#
# This file exists to define the steps executed for a push to the default tree.
# For configuring the steps that occur after a push to all other branches under
# the refs/heads namespace, see `//.github/workflows:presubmit.yml`.
---
name: trunk

on:
  push:
    branches:
      - master

concurrency:
  group: ${{ github.ref }}
  cancel-in-progress: true

jobs:
  lint:
    uses: ./.github/workflows/lint.yml

  build-and-test:
    uses: ./.github/workflows/build-and-test.yml
    secrets: inherit

  benchmark:
    runs-on: ubuntu-latest
    permissions:
      contents: write
      deployments: write
    steps:
      - uses: actions/setup-go@v5
        with:
          go-version: 1.22.5

      - uses: actions/checkout@v4

      - name: Run benchmark
        run: go test -v ./... -bench=. -run=xxx -benchmem | tee output.txt

      - name: Store benchmark result
        uses: benchmark-action/github-action-benchmark@v1
        with:
          tool: 'go'
          output-file-path: output.txt
          github-token: ${{ secrets.GITHUB_TOKEN }}
          comment-on-alert: true
          auto-push: true