Skip to content

Commit 27ee8c6

Browse files
committed
Remove skip-ci check
1 parent 87b7811 commit 27ee8c6

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
name: Tests
22

33
on:
4-
workflow_call:
5-
inputs:
6-
target_sha:
7-
description: Commit SHA to inspect for Codecov skip markers.
8-
required: false
9-
type: string
4+
workflow_call: {}
105

116
permissions:
127
contents: read
@@ -84,6 +79,7 @@ jobs:
8479
go-version-file: go.mod
8580
- name: Run tests
8681
run: make test-ci
82+
<<<<<<< HEAD
8783
- name: Determine skip-codecov
8884
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
8985
id: skip-codecov
@@ -102,9 +98,10 @@ jobs:
10298
const commitMessage = commit.commit.message;
10399
const skip = commitMessage.includes("[skip codecov]") || commitMessage.includes("[skip-codecov]");
104100
core.setOutput("skip", skip);
101+
=======
102+
>>>>>>> b048fbe (Remove skip-ci check)
105103
- name: Upload coverage to Codecov
106104
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
107-
if: ${{ steps.skip-codecov.outputs.skip != 'true' }}
108105
with:
109106
files: covreport
110107
env:

0 commit comments

Comments
 (0)