-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
90525d1
commit edd6649
Showing
3 changed files
with
6 additions
and
13 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 |
---|---|---|
|
@@ -12,7 +12,7 @@ jobs: | |
strategy: | ||
fail-fast: true | ||
matrix: | ||
os: [ubuntu-latest] | ||
os: [ubuntu-latest, windows-latest, macos-latest] | ||
|
||
runs-on: ${{ matrix.os }} | ||
|
||
|
@@ -31,9 +31,8 @@ jobs: | |
version: 1.4 | ||
|
||
- name: Install Julia Project Packages | ||
# we add this ENV varaible to force PyCall to use conda rather than | ||
# the environment python (default on Linux) | ||
# see the PyCall documentation | ||
# we add this ENV varaible to force PyCall to download and use Conda rather than | ||
# the system python (default on Linux), see the PyCall documentation | ||
env: | ||
PYTHON: "" | ||
run: | | ||
|
@@ -56,10 +55,10 @@ jobs: | |
julia --project=@. -e 'using Pkg; Pkg.add("Coverage"); | ||
using Coverage; | ||
LCOV.writefile("coverage-lcov.info", Codecov.process_folder())' | ||
if: success() | ||
if: ${{ success() && matrix.os == 'ubuntu-latest' }} | ||
|
||
- name: Submit coverage | ||
uses: codecov/[email protected] | ||
with: | ||
token: ${{secrets.CODECOV_TOKEN}} | ||
if: success() | ||
if: ${{ success() && matrix.os == 'ubuntu-latest'}} |
This file was deleted.
Oops, something went wrong.
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