File tree Expand file tree Collapse file tree 2 files changed +16
-21
lines changed
Expand file tree Collapse file tree 2 files changed +16
-21
lines changed Original file line number Diff line number Diff line change 33on : [push, pull_request]
44
55jobs :
6+
67 build-and-test :
78 name : Build and Test
89 runs-on : ubuntu-latest
1415 version : stable
1516 - run : raco pkg install --batch --auto --link --name resyntax
1617 - run : raco test --package resyntax
18+
19+ code-coverage :
20+ name : Code Coverage
21+ runs-on : ubuntu-latest
22+ if : ${{ github.event_name == 'pull_request' || github.ref == 'master' }}
23+ steps :
24+ - uses : actions/checkout@master
25+ 26+ with :
27+ version : stable
28+ - run : raco pkg install --batch --auto cover cover-coveralls
29+ - run : raco pkg install --batch --auto --link --name resyntax
30+ - run : raco cover --format coveralls --suppress-log-execution --package resyntax
31+ env :
32+ COVERALLS_REPO_TOKEN : ${{ secrets.COVERALLS_REPO_TOKEN }}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments