Skip to content

Commit

Permalink
Add option to skip codecov report
Browse files Browse the repository at this point in the history
  • Loading branch information
sevein committed Mar 8, 2024
1 parent fe761be commit 3779ee7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
run: make test-ci
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
if: "!contains(github.event.head_commit.message, '[skip codecov]')"
with:
file: covreport
env:
Expand Down
6 changes: 6 additions & 0 deletions internal/filenotify/poller_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package filenotify

import "testing"

func TestFilePoller(t *testing.T) {
}

0 comments on commit 3779ee7

Please sign in to comment.