File tree Expand file tree Collapse file tree 3 files changed +1
-11
lines changed
Expand file tree Collapse file tree 3 files changed +1
-11
lines changed Original file line number Diff line number Diff line change @@ -104,14 +104,6 @@ jobs:
104104 working-directory : backend
105105 run : go test -v -race -coverprofile=coverage.out ./...
106106
107- - name : Upload coverage
108- uses : codecov/codecov-action@v4
109- with :
110- files : backend/coverage.out
111- flags : backend
112- token : ${{ secrets.CODECOV_TOKEN }}
113- continue-on-error : true
114-
115107 frontend-lint :
116108 name : Frontend Lint
117109 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ The workflow intelligently runs jobs based on which files changed:
38383 . ** Backend Tests** (conditional)
3939 - Runs if backend files changed OR on push to master
4040 - Run all Go tests with race detector
41- - Upload coverage to Codecov (optional)
4241
43424 . ** Frontend Lint** (conditional)
4443 - Runs if frontend files changed OR on push to master
@@ -145,7 +144,6 @@ Add the following secrets to your GitHub repository:
145144| -------------| -------------| ---------|
146145| ` DOCKER_USERNAME ` | Your Docker Hub username | ` johndoe ` |
147146| ` DOCKER_TOKEN ` | Docker Hub access token | ` dckr_pat_abc123... ` |
148- | ` CODECOV_TOKEN ` | Codecov upload token (optional) | Get from https://codecov.io |
149147
150148### 3. Enable GitHub Actions
151149
Original file line number Diff line number Diff line change @@ -187,8 +187,8 @@ func TestDirectoryHandlerHiddenFilesSkipped(t *testing.T) {
187187// TestFormatSize tests the formatSize function.
188188func TestFormatSize (t * testing.T ) {
189189 tests := []struct {
190- expected string
191190 bytes int64
191+ expected string
192192 }{
193193 {0 , "0 B" },
194194 {100 , "100 B" },
You can’t perform that action at this time.
0 commit comments