-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (34 loc) · 969 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Test
on:
push:
branches: ["master", "reuse_ci"]
paths:
- '.github/workflows/test.yml'
- 'src/**'
- 'test/**'
- 'Project.toml'
pull_request:
branches: ["master"]
paths:
- '.github/workflows/test.yml'
- 'src/**'
- 'test/**'
- 'Project.toml'
jobs:
test:
uses: ProjectTorreyPines/GitHubActionsWorkflows/.github/workflows/test.yml@master
secrets: inherit
with:
use_coverage: true
use_FuseRegistry: false
# Optional inputs for artifact uploading
# For example, uncomment the following 4 lines to upload test result images that
# will be generated by test/runtests.jl in test directory
# with:
# upload_artifact: true
# artifact_name: test_result_images
# artifact_path: test/*.png
# Optional input to diable use of dvc for downloading sample files
# with:
# use_dvc: false
# secrets: inherit can be removed in this case.