mirror of
https://github.com/TwiN/gatus.git
synced 2024-12-14 11:58:04 +00:00
ci: Run benchmark on every new latest image
This commit is contained in:
parent
a29cf158dd
commit
26611b7793
1 changed files with 6 additions and 2 deletions
8
.github/workflows/benchmark.yml
vendored
8
.github/workflows/benchmark.yml
vendored
|
@ -1,5 +1,9 @@
|
|||
name: benchmark
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: [publish-latest]
|
||||
branches: [master]
|
||||
types: [completed]
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
repository:
|
||||
|
@ -19,8 +23,8 @@ jobs:
|
|||
- uses: actions/setup-go@v3
|
||||
with:
|
||||
go-version: 1.19
|
||||
repository: "${{ github.event.inputs.repository }}"
|
||||
ref: "${{ github.event.inputs.ref }}"
|
||||
repository: ${{ github.event.inputs.repository || "TwiN/gatus" }}
|
||||
ref: ${{ github.event.inputs.ref || "master" }}
|
||||
- uses: actions/checkout@v3
|
||||
- name: Benchmark
|
||||
run: go test -bench=. ./storage/store
|
||||
|
|
Loading…
Reference in a new issue