ci: try to remove file path

This commit is contained in:
Slug-Boi
2025-04-10 18:08:28 +02:00
parent c78f72bf47
commit e6df1344e9
+3 -4
View File
@@ -21,16 +21,15 @@ jobs:
run: cd ci && go get dagger.io/dagger@latest && cd .. run: cd ci && go get dagger.io/dagger@latest && cd ..
- name: Run Dagger Test Workflow - name: Run Dagger Test Workflow
run: go run ci/test_on_push.go run: go run ci/test_on_push.go
- name: Generate Coverage Report # - name: Generate Coverage Report
run: go test -coverprofile=cover.out ./src/cmd/utils ./src/cmd/tui # run: go test -v ./...
- name: Update coverage report - name: Update coverage report
uses: ncruces/go-coverage-report@v0 uses: ncruces/go-coverage-report@v0
with: with:
coverage-file: ./cover.out
report: true report: true
chart: true chart: true
amend: true amend: true
if: | if: |
matrix.os == 'ubuntu-latest' && matrix.os == 'ubuntu-latest' &&
github.event_name == 'push' github.event_name == 'push'
#continue-on-error: true continue-on-error: true