update coveralls badge when main is updated #20

Merged
natercio merged 2 commits from update-coveralls-badge into main 2025-11-26 10:34:40 +00:00
3 changed files with 4 additions and 4 deletions
Showing only changes of commit d415fcd752 - Show all commits

View File

@@ -17,7 +17,7 @@ jobs:
with:
go-version: 1.25
- name: Run Unit tests
- name: Run Unit tests with coverage
run: |
go test -covermode atomic -coverprofile=coverage.out ./...
grep -v -E "(main|_gen).go" coverage.out > coverage.filtered.out

View File

@@ -1,8 +1,8 @@
name: Generate check
on:
push:
pull_request:
types: [opened, reopened, synchronize]
jobs:
check-changes:
@@ -24,7 +24,7 @@ jobs:
echo "has_gen_changes=false" >> $GITHUB_OUTPUT
fi
check-generate:
verify-generate:
runs-on: ubuntu-latest
needs: check-changes
if: needs.check-changes.outputs.has_gen_changes == 'true'

View File

@@ -24,7 +24,7 @@ jobs:
echo "has_go_changes=false" >> $GITHUB_OUTPUT
fi
tests:
run-tests:
runs-on: ubuntu-latest
needs: check-changes
if: needs.check-changes.outputs.has_go_changes == 'true'