Skip to content

Commit

Permalink
Merge pull request #46 from pkg-id/develop
Browse files Browse the repository at this point in the history
release/v0.1.0
  • Loading branch information
josestg authored Apr 15, 2023
2 parents d79a2bc + db76598 commit 32a45d0
Show file tree
Hide file tree
Showing 36 changed files with 3,847 additions and 3 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Benchmark

on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "develop" ]

jobs:
benchmark:
name: Performance regression check
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.18.x', '1.19.x', '1.20.x' ]

steps:
- uses: actions/checkout@v3
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
# Run benchmark with `go test -bench` and stores the output to a file
- name: Run benchmark
run: go test ./... -bench=. -benchmem | tee output.txt
# Download previous benchmark result from cache (if exists)
- name: Download previous benchmark data
uses: actions/cache@v1
with:
path: ./cache
key: ${{ runner.os }}-benchmark
# Run `github-action-benchmark` action
- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
# What benchmark tool the output.txt came from
tool: 'go'
# Where the output from the benchmark tool is stored
output-file-path: output.txt
# Where the previous data file is stored
external-data-json-path: ./cache/benchmark-data.json
# Workflow will fail when an alert happens
fail-on-alert: false
12 changes: 10 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.18.x', '1.19.x' ]
go-version: [ '1.18.x', '1.19.x', '1.20.x' ]

steps:
- uses: actions/checkout@v3
Expand All @@ -27,4 +27,12 @@ jobs:
run: go install github.com/mfridman/tparse@latest

- name: Run Test
run: make test
run: go test -race -count=1 -timeout 30s -coverprofile=coverage.txt -covermode=atomic -json ./... | tparse -all -format markdown

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
name: codecov-umbrella
fail_ci_if_error: true
verbose: true
Loading

0 comments on commit 32a45d0

Please sign in to comment.