Skip to content

Commit 7a48960

Browse files
authored
ApproxFunBase v0.5 (#148)
* ApproxFunBase v0.5 * Move to CI
1 parent 70ca1df commit 7a48960

File tree

4 files changed

+43
-63
lines changed

4 files changed

+43
-63
lines changed

.github/workflows/ci.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: CI
2+
on:
3+
- push
4+
- pull_request
5+
jobs:
6+
test:
7+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
8+
runs-on: ${{ matrix.os }}
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
version:
13+
- '1.6'
14+
os:
15+
- ubuntu-latest
16+
- macOS-latest
17+
- windows-latest
18+
arch:
19+
- x64
20+
steps:
21+
- uses: actions/checkout@v2
22+
- uses: julia-actions/setup-julia@v1
23+
with:
24+
version: ${{ matrix.version }}
25+
arch: ${{ matrix.arch }}
26+
- uses: actions/cache@v1
27+
env:
28+
cache-name: cache-artifacts
29+
with:
30+
path: ~/.julia/artifacts
31+
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
32+
restore-keys: |
33+
${{ runner.os }}-test-${{ env.cache-name }}-
34+
${{ runner.os }}-test-
35+
${{ runner.os }}-
36+
- uses: julia-actions/julia-buildpkg@v1
37+
- uses: julia-actions/julia-runtest@v1
38+
- uses: julia-actions/julia-processcoverage@v1
39+
- uses: codecov/codecov-action@v1
40+
with:
41+
file: lcov.info

.travis.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "SingularIntegralEquations"
22
uuid = "e094c991-5a90-5477-8896-c1e4c9552a1a"
3-
version = "0.6.7"
3+
version = "0.6.8"
44

55
[deps]
66
ApproxFun = "28f2ccd6-bb30-5033-b560-165f7b14dc2f"
@@ -19,7 +19,7 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1919

2020
[compat]
2121
ApproxFun = "0.11.8, 0.12"
22-
ApproxFunBase = "0.2.3, 0.3, 0.4.4"
22+
ApproxFunBase = "0.2.3, 0.3, 0.4.4, 0.5"
2323
ApproxFunFourier = "0.2"
2424
ApproxFunOrthogonalPolynomials = "0.3, 0.4"
2525
ApproxFunSingularities = "0.1.6, 0.2"

appveyor.yml

Lines changed: 0 additions & 43 deletions
This file was deleted.

0 commit comments

Comments
 (0)