-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from slimgroup/testing
re-enable most test
- Loading branch information
Showing
15 changed files
with
216 additions
and
144 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Cancel | ||
|
||
on: [push] | ||
|
||
jobs: | ||
cancel: | ||
name: 'Cancel Previous Runs' | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 3 | ||
steps: | ||
- uses: styfle/[email protected] | ||
with: | ||
# Ids to cancel op/judi | ||
# https://api.github.com/repos/slimgroup/JUDI.jl/actions/workflows | ||
workflow_id: 2306091 | ||
access_token: ${{ github.token }} |
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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: CI-SetIntersectionProjection | ||
|
||
on: | ||
# Trigger the workflow on push to master or pull request | ||
# to be merged in master | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
test: | ||
name: Julia ${{ matrix.version }} - ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
fail-fast: false | ||
|
||
matrix: | ||
version: ['1.1', '1.2', '1.3', '1.4', '1.5', 'nightly'] | ||
os: [ubuntu-latest] | ||
|
||
include: | ||
- version: 1.3 | ||
os: macos-latest | ||
|
||
- version: 1.4 | ||
os: macos-latest | ||
|
||
steps: | ||
- name: Checkout SetIntersectionProjection | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup julia | ||
uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: ${{ matrix.version }} | ||
arch: x64 | ||
|
||
- name: Add SLIM registery | ||
run: | | ||
julia --color=yes --check-bounds=yes -e 'using Pkg;Pkg.update();Pkg.Registry.add(RegistrySpec(url="https://github.com/slimgroup/SLIMregistryJL.git"))' | ||
- name: Build SetIntersectionProjection | ||
uses: julia-actions/julia-buildpkg@latest | ||
|
||
- name: Run tests | ||
uses: julia-actions/julia-runtest@latest | ||
|
||
- uses: julia-actions/julia-uploadcodecov@latest | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |
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 |
---|---|---|
@@ -1,21 +1,20 @@ | ||
|
||
name = "SetIntersectionProjection" | ||
uuid = "335f7d24-6316-57dd-9c3a-df470f2b739e" | ||
authors = ["Bas Peters <[email protected]>"] | ||
version = "0.0.0" | ||
version = "0.1.0" | ||
|
||
[deps] | ||
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b" | ||
DistributedArrays = "aaf54ef3-cdf8-58ed-94cc-d582ad619b94" | ||
FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341" | ||
Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59" | ||
JOLI = "bb331ad6-a1cf-11e9-23da-9bcb53c69f6f" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a" | ||
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7" | ||
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" | ||
SortingAlgorithms = "a2af1166-a08f-5f64-846c-94a0d3cef48c" | ||
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" | ||
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341" | ||
JOLI = "bb331ad6-a1cf-11e9-23da-9bcb53c69f6f" | ||
Wavelets = "29a6e085-ba6d-5f35-a997-948ac2efa89a" | ||
SortingAlgorithms = "a2af1166-a08f-5f64-846c-94a0d3cef48c" | ||
Parameters = "d96e819e-fc66-5662-9728-84c9c7592b0a" | ||
Interpolations = "a98d9a8b-a2ab-59e6-89dd-64a1c18fca59" | ||
DistributedArrays = "aaf54ef3-cdf8-58ed-94cc-d582ad619b94" |
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
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
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
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
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
Oops, something went wrong.