File tree Expand file tree Collapse file tree 5 files changed +64
-75
lines changed Expand file tree Collapse file tree 5 files changed +64
-75
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ - push
4+ - pull_request
5+ jobs :
6+ test :
7+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
8+ runs-on : ${{ matrix.os }}
9+ strategy :
10+ matrix :
11+ version :
12+ - ' 1.3'
13+ - ' 1.4'
14+ - ' nightly'
15+ os :
16+ - ubuntu-latest
17+ - macOS-latest
18+ - windows-latest
19+ arch :
20+ - x86
21+ - x64
22+ exclude :
23+ - os : macOS-latest
24+ arch : x86
25+ steps :
26+ - uses : actions/checkout@v2
27+ - uses : julia-actions/setup-julia@v1
28+ with :
29+ version : ${{ matrix.version }}
30+ arch : ${{ matrix.arch }}
31+ show-versioninfo : true
32+ - uses : actions/cache@v1
33+ env :
34+ cache-name : cache-artifacts
35+ with :
36+ path : ~/.julia/artifacts
37+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
38+ restore-keys : |
39+ ${{ runner.os }}-test-${{ env.cache-name }}-
40+ ${{ runner.os }}-test-
41+ ${{ runner.os }}-
42+ - uses : julia-actions/julia-buildpkg@latest
43+ - uses : julia-actions/julia-runtest@latest
44+ - uses : julia-actions/julia-uploadcodecov@latest
45+ env :
46+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
47+ docs :
48+ name : Documentation
49+ runs-on : ubuntu-latest
50+ steps :
51+ - uses : actions/checkout@v2
52+ - uses : julia-actions/setup-julia@v1
53+ with :
54+ version : ' 1.3'
55+ - run : |
56+ julia --project=docs -e '
57+ using Pkg
58+ Pkg.develop(PackageSpec(path=pwd()))
59+ Pkg.instantiate()'
60+ - run : julia --project=docs docs/make.jl
61+ env :
62+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
63+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }}
Original file line number Diff line number Diff line change 22language : julia
33os :
44 - freebsd
5- - linux
6- - osx
7- - windows
85julia :
96 - 1.3
107 - 1.4
118 - nightly
129notifications :
1310 email : false
14- after_success :
15- - julia -e 'using Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
1611jobs :
1712 allow_failures :
1813 - julia : nightly
19- include :
20- - stage : " Documentation"
21- julia : 1.3
22- os : linux
23- script :
24- - julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
25- - julia --project=docs/ docs/make.jl
26- after_success : skip
2714cache :
2815 directories :
2916 - $HOME/.julia/artifacts
Original file line number Diff line number Diff line change 11# FastTransforms.jl
22
3- [ ![ Travis ] ( https://travis-ci.org /JuliaApproximation/FastTransforms.jl.svg?branch=master )] ( https://travis-ci.org /JuliaApproximation/FastTransforms.jl ) [ ![ AppVeyor ] ( https://ci.appveyor.com/api/projects/status/oba9qush15q3x8pb/branch/master?svg=true )] ( https://ci.appveyor.com/project/MikaelSlevinsky/fasttransforms-jl/branch/master ) [ ![ Cirrus ] ( https://api.cirrus -ci.com/github/ JuliaApproximation/FastTransforms.jl.svg )] ( https://cirrus -ci.com/github /JuliaApproximation/FastTransforms.jl ) [ ![ codecov] ( https://codecov.io/gh/JuliaApproximation/FastTransforms.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/JuliaApproximation/FastTransforms.jl ) [ ![ ] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://JuliaApproximation.github.io/FastTransforms.jl/stable ) [ ![ ] ( https://img.shields.io/badge/docs-latest-blue.svg )] ( https://JuliaApproximation.github.io/FastTransforms.jl/latest )
3+ [ ![ Build Status ] ( https://github.com /JuliaApproximation/FastTransforms.jl/workflows/CI/badge .svg )] ( https://github.com /JuliaApproximation/FastTransforms.jl/actions?query=workflow%3ACI ) [ ![ Travis ] ( https://travis -ci.org/ JuliaApproximation/FastTransforms.jl.svg?branch=master )] ( https://travis -ci.org /JuliaApproximation/FastTransforms.jl ) [ ![ codecov] ( https://codecov.io/gh/JuliaApproximation/FastTransforms.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/JuliaApproximation/FastTransforms.jl ) [ ![ ] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://JuliaApproximation.github.io/FastTransforms.jl/stable ) [ ![ ] ( https://img.shields.io/badge/docs-latest-blue.svg )] ( https://JuliaApproximation.github.io/FastTransforms.jl/latest )
44
55` FastTransforms.jl ` allows the user to conveniently work with orthogonal polynomials with degrees well into the millions.
66
You can’t perform that action at this time.
0 commit comments