File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 1
1
on : # Run the workflow for each of the following events:
2
2
push : # - A branch is pushed or updated.
3
3
pull_request : # - A pull-request is opened or updated.
4
+ schedule :
5
+ - cron : ' @daily' # - A daily cron job is scheduled.
4
6
workflow_dispatch : # - A manual run of the workflow is requested from the GitHub web interface.
5
7
release :
6
8
types : [created] # - A release is created.
32
34
- run : alr gnatprove -j0 --level=4
33
35
34
36
# Instrument the project code for coverage analysis.
35
- - run : cd tests && alr gnatcov instrument --level=stmt --dump-trigger=atexit --projects ada_spark_workflow.gpr
37
+ - run : cd tests && alr build && alr gnatcov instrument --level=stmt --dump-trigger=atexit --projects ada_spark_workflow.gpr
36
38
37
39
# Build testsuite with instrumented code.
38
40
- run : cd tests && alr build -- --src-subdirs=gnatcov-instr --implicit-with=gnatcov_rts_full
You can’t perform that action at this time.
0 commit comments