Skip to content

Commit

Permalink
Racoco
Browse files Browse the repository at this point in the history
  • Loading branch information
Fernando Corrêa de Oliveira committed Oct 29, 2023
1 parent d31101a commit f4668d6
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 6 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: coverage
on:
push:
branches:
- master
jobs:
perl6:
runs-on: ubuntu-latest
container:
image: fernandocorrea/red-tester-no-run
steps:
- uses: actions/checkout@v2
- name: Run test coverage
run: |
racoco --fail-level=$(cat .coverage) --exec='zef test -v .' --html | raku -ne 'say $<num>.floor if /^ "Coverage:" <.ws> $<num>=[\d+\.\d+] "%" $/' > .coverage
rm -rf docs/coverage
mkdir -p docs/coverage/
mv .racoco/* docs/coverage/
- name: Commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add .
git commit -m "Coverage" -a || true
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
6 changes: 0 additions & 6 deletions .github/workflows/create-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,6 @@ jobs:
- name: Create local changes
run: |
raku tools/make-docs.raku
- name: Run test coverage
run: |
racoco --fail-level=$(cat .coverage) --exec='zef test -v .' --html | raku -ne 'say $<num>.floor if /^ "Coverage:" <.ws> $<num>=[\d+\.\d+] "%" $/' > .coverage
rm -rf docs/coverage
mkdir -p docs/coverage/
mv .racoco/* docs/coverage/
- name: Commit files
run: |
git config --local user.email "[email protected]"
Expand Down

0 comments on commit f4668d6

Please sign in to comment.