Skip to content

Commit

Permalink
chore: fix codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
tuan78 committed Aug 29, 2024
1 parent 84e99a0 commit bd05ee3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ name: Test and coverage
on:
push:
branches:
- 'main'
- "main"
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout current branch
uses: actions/checkout@v2
uses: actions/checkout@master

- name: Setup Golang
uses: actions/setup-go@v2
with:
go-version: '1.18'
go-version: "1.18"

- name: Load cached dependencies
uses: actions/cache@v3
with:
Expand All @@ -35,7 +35,7 @@ jobs:
(cd benchmarks && go mod download)
- name: Run coverage
run: |
run: |
make cover
(cd cmd && make cover)
Expand All @@ -57,4 +57,4 @@ jobs:
flags: cmd
name: cmd
fail_ci_if_error: true
verbose: true
verbose: true

0 comments on commit bd05ee3

Please sign in to comment.