File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 44
44
docker exec -t slurmctld srun -n 4 hostname
45
45
- name : Test SlurmClusterManager
46
46
run : |
47
- docker exec -t slurmctld julia -e 'import Pkg; Pkg.activate("SlurmClusterManager"); Pkg.test()'
47
+ docker exec -t slurmctld julia -e 'import Pkg; Pkg.activate("SlurmClusterManager"); Pkg.test(; coverage=true)'
48
+ - uses : julia-actions/julia-processcoverage@v1
49
+ - uses : codecov/codecov-action@v5
50
+ with :
51
+ files : lcov.info
52
+ token : ${{ secrets.CODECOV_TOKEN }}
53
+ # If this PR is from a fork, then do NOT fail CI if the Codecov upload errors.
54
+ # If this PR is NOT from a fork, then DO fail CI if the Codecov upload errors.
55
+ # If this is not a PR, then DO fail CI if the Codecov upload errors.
56
+ fail_ci_if_error : ${{ github.event_name != 'pull_request' || github.repository == github.event.pull_request.head.repo.full_name }}
You can’t perform that action at this time.
0 commit comments