Skip to content

Commit 02cc927

Browse files
committed
Force config file generation
1 parent ed9db8d commit 02cc927

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/main.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
on: # Run the workflow for each of the following events:
22
push: # - A branch is pushed or updated.
33
pull_request: # - A pull-request is opened or updated.
4+
schedule:
5+
- cron: '@daily' # - A daily cron job is scheduled.
46
workflow_dispatch: # - A manual run of the workflow is requested from the GitHub web interface.
57
release:
68
types: [created] # - A release is created.
@@ -32,7 +34,7 @@ jobs:
3234
- run: alr gnatprove -j0 --level=4
3335

3436
# 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
3638

3739
# Build testsuite with instrumented code.
3840
- run: cd tests && alr build -- --src-subdirs=gnatcov-instr --implicit-with=gnatcov_rts_full

0 commit comments

Comments
 (0)