Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebolewski committed Jun 19, 2020
1 parent 90525d1 commit edd6649
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 13 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest]
os: [ubuntu-latest, windows-latest, macos-latest]

runs-on: ${{ matrix.os }}

Expand All @@ -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: |
Expand All @@ -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'}}
6 changes: 0 additions & 6 deletions Dockerfile

This file was deleted.

2 changes: 1 addition & 1 deletion bors.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
status = [
"test (ubuntu-latest)',
'test (windows-latest)',
'test (macos-latest'),
'test (macos-latest')
]
delete_merged_branches = true
timeout_sec = 3600
Expand Down

0 comments on commit edd6649

Please sign in to comment.