Skip to content

Commit 32c865c

Browse files
CompatHelper: bump compat for "ApproxFunBase" to "0.4" (#733)
* CompatHelper: bump compat for "ApproxFunBase" to "0.4" * Move to Github CI Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Sheehan Olver <solver@mac.com>
1 parent d3096a0 commit 32c865c

File tree

4 files changed

+45
-67
lines changed

4 files changed

+45
-67
lines changed

.github/workflows/ci.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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.5'
14+
- '^1.6.0-0'
15+
os:
16+
- ubuntu-latest
17+
- macOS-latest
18+
- windows-latest
19+
arch:
20+
- x64
21+
steps:
22+
- uses: actions/checkout@v2
23+
- uses: julia-actions/setup-julia@v1
24+
with:
25+
version: ${{ matrix.version }}
26+
arch: ${{ matrix.arch }}
27+
- uses: actions/cache@v1
28+
env:
29+
cache-name: cache-artifacts
30+
with:
31+
path: ~/.julia/artifacts
32+
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
33+
restore-keys: |
34+
${{ runner.os }}-test-${{ env.cache-name }}-
35+
${{ runner.os }}-test-
36+
${{ runner.os }}-
37+
- uses: julia-actions/julia-buildpkg@v1
38+
- uses: julia-actions/julia-runtest@v1
39+
- uses: julia-actions/julia-processcoverage@v1
40+
- uses: codecov/codecov-action@v1
41+
with:
42+
file: lcov.info

.travis.yml

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

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ApproxFun"
22
uuid = "28f2ccd6-bb30-5033-b560-165f7b14dc2f"
3-
version = "0.12.4"
3+
version = "0.12.5"
44

55
[deps]
66
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
@@ -20,9 +20,9 @@ SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
2020

2121
[compat]
2222
AbstractFFTs = "0.5"
23-
ApproxFunBase = "0.3"
23+
ApproxFunBase = "0.3, 0.4"
2424
ApproxFunFourier = "0.2"
25-
ApproxFunOrthogonalPolynomials = "0.3"
25+
ApproxFunOrthogonalPolynomials = "0.3, 0.4"
2626
ApproxFunSingularities = "0.1.3, 0.2"
2727
Calculus = "0.5"
2828
DomainSets = "0.3, 0.4"

appveyor.yml

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

0 commit comments

Comments
 (0)