Skip to content

Commit

Permalink
Prepare multi package
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantin8105 authored May 30, 2024
1 parent 981159a commit 479c5cc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,12 @@ jobs:
#TRAVIS=true ./scripts/test.sh
- name: Run Tests
run: go test -coverprofile=coverage.txt -covermode=atomic .
run: |
echo "" > coverage.txt
go test -coverprofile=1.txt -covermode=atomic .
cat 1.txt > coverage.txt
go test -coverprofile=1.txt -covermode=atomic github.com/Konstantin8105/ast
cat 1.txt > coverage.txt
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
Expand Down

0 comments on commit 479c5cc

Please sign in to comment.