Replace IMASDD with IMASdd #47
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
# 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. |