Skip to content

Commit 09f3748

Browse files
committed
build: enable lint and codecov for perf
1 parent b98fa33 commit 09f3748

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/codecov.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ jobs:
2020
if: |
2121
startsWith(github.event.pull_request.title, 'fix') ||
2222
startsWith(github.event.pull_request.title, 'feat') ||
23-
startsWith(github.event.pull_request.title, 'refactor')
23+
startsWith(github.event.pull_request.title, 'refactor') ||
24+
startsWith(github.event.pull_request.title, 'perf')
2425
runs-on: ${{ matrix.os }}
2526
env:
2627
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/golangci-lint.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ jobs:
2020
if: |
2121
startsWith(github.event.pull_request.title, 'fix') ||
2222
startsWith(github.event.pull_request.title, 'feat') ||
23-
startsWith(github.event.pull_request.title, 'refactor')
23+
startsWith(github.event.pull_request.title, 'refactor') ||
24+
startsWith(github.event.pull_request.title, 'perf')
2425
runs-on: ${{ matrix.os }}
2526
steps:
2627
- uses: actions/setup-go@v3
@@ -41,4 +42,4 @@ jobs:
4142
args: --timeout 3m
4243

4344
# Optional: show only new issues if it's a pull request. The default value is `false`.
44-
only-new-issues: false
45+
only-new-issues: false

0 commit comments

Comments
 (0)