Skip to content

Commit 40c48b6

Browse files
committed
chore: ci changes
1 parent f3f6352 commit 40c48b6

File tree

3 files changed

+1
-11
lines changed

3 files changed

+1
-11
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff 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

GITHUB_ACTIONS.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ The workflow intelligently runs jobs based on which files changed:
3838
3. **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

4342
4. **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

backend/internal/api/directory_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,8 @@ func TestDirectoryHandlerHiddenFilesSkipped(t *testing.T) {
187187
// TestFormatSize tests the formatSize function.
188188
func 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"},

0 commit comments

Comments
 (0)