File tree Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,19 @@ jobs:
32
32
arch : ${{ matrix.arch }}
33
33
- uses : julia-actions/cache@v1
34
34
- uses : julia-actions/julia-buildpkg@v1
35
- - uses : julia-actions/julia-runtest@v1
36
- - uses : julia-actions/julia-uploadcoveralls@v1
37
- env :
38
- COVERALLS_TOKEN : ${{ secrets.COVERALLS_REPO_TOKEN }}
35
+ - name : " Run tests"
36
+ shell : bash
37
+ run : |
38
+ julia --color=yes --project=. -e 'import Pkg; Pkg.add("Coverage")'
39
+ julia --color=yes --threads=auto --check-bounds=yes --depwarn=yes --code-coverage=user --project=. -e 'import Pkg; Pkg.test(coverage=true)'
40
+ julia --color=yes --project=. coverage.jl
41
+ - name : " Coveralls"
42
+ uses : coverallsapp/github-action@v2
43
+ with :
44
+ github-token : ${{ secrets.GITHUB_TOKEN }}
45
+ file : lcov.info
46
+ parallel : true
47
+
39
48
docs :
40
49
name : Documentation
41
50
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments