-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Link to actual file * suffix enviroment varaible with PATH * store mismatches as GHA artifacts * set envvar with colon * use literal for path * dirnames * allow ~ for user dir
- Loading branch information
Showing
2 changed files
with
50 additions
and
17 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,8 @@ jobs: | |
matrix: | ||
julia-version: ['nightly', '1'] | ||
os: [ubuntu-latest, windows-latest, macOS-latest] | ||
|
||
env: | ||
REFERENCE_TESTS_STAGING_PATH: "~/mismatches/" | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: "Set up Julia" | ||
|
@@ -46,7 +47,11 @@ jobs: | |
rm -rf test/references | ||
julia --color=yes --check-bounds=yes --project -e "using Pkg; Pkg.test(coverage=true)" | ||
julia --color=yes --check-bounds=yes --project -e "using Pkg; Pkg.test(coverage=true)" | ||
- name: Upload Mismatched Files as a Build Artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: "Mismatched Files" | ||
path: "~/mismatches/" | ||
# Unless tokenless upload is enabled, we can only submit coverage via | ||
# environment variable. But PRs from other fork can't do that. | ||
# See issue: https://github.com/julia-actions/julia-uploadcodecov/issues/1 |
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