1
0
mirror of https://github.com/gofiber/fiber.git synced 2025-02-21 20:13:22 +00:00

Merge pull request #772 from Fenny/master

💪 add pipefail to benchmarks
This commit is contained in:
Fenny 2020-09-14 10:56:35 +02:00 committed by GitHub
commit 2bd0ef97fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,7 @@ jobs:
- name: Fetch Repository
uses: actions/checkout@v2
- name: Run Benchmark
run: go test ./... -benchmem -run=^$ -bench . | tee output.txt
run: set -o pipefail; go test ./... -benchmem -run=^$ -bench . | tee output.txt
- name: Get Previous Benchmark Results
uses: actions/cache@v1
with: