-
Notifications
You must be signed in to change notification settings - Fork 14
89 lines (85 loc) · 2.46 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: CI
on:
push:
branches: "master"
tags: ["*"]
pull_request:
release:
jobs:
test:
name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.julia-arch }} - threads ${{ matrix.julia-threads }}
runs-on: ${{ matrix.os }}
env:
JULIA_NUM_THREADS: ${{ matrix.julia-threads }}
strategy:
fail-fast: false
matrix:
julia-version:
- "1.0"
- "1"
- "nightly"
os:
- ubuntu-latest
- macos-latest
- windows-latest
julia-arch:
- x64
julia-threads:
- "1"
- "2"
# Tests on Windows with Julia v1.0 crash when using multiple threads. I
# don't think investigating why this failure on such an old version of
# Julia is worth the effort
exclude:
- os: windows-latest
julia-version: "1.0"
julia-threads: "2"
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
- uses: julia-actions/[email protected]
continue-on-error: true
- uses: julia-actions/[email protected]
continue-on-error: true
astropy:
name: Compare with Astropy
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: "1"
arch: x64
- uses: julia-actions/cache@v1
with:
cache-name: astropy
- uses: julia-actions/julia-buildpkg@latest
- name: Compare with Astropy
shell: julia --project=. --color=yes {0}
run: |
using Pkg
Pkg.add(name="PythonCall", version="0.8")
using LombScargle
include(joinpath(pkgdir(LombScargle), "test", "astropy.jl"))
Documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@latest
with:
version: 1
- uses: julia-actions/cache@v1
with:
cache-name: astropy
- uses: julia-actions/julia-docdeploy@releases/v1
env:
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
JULIA_GR_PROVIDER: BinaryBuilder