Skip to content

Commit b024a2f

Browse files
committed
Switch CI to GitHub Actions
1 parent 7bd7057 commit b024a2f

File tree

4 files changed

+56
-23
lines changed

4 files changed

+56
-23
lines changed

.github/workflows/TagBot.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
name: TagBot
22
on:
3-
schedule:
4-
- cron: 0 * * * *
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
7+
inputs:
8+
lookback:
9+
default: 3
510
jobs:
611
TagBot:
12+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
713
runs-on: ubuntu-latest
814
steps:
915
- uses: JuliaRegistries/TagBot@v1
1016
with:
1117
token: ${{ secrets.GITHUB_TOKEN }}
18+
ssh: ${{ secrets.DOCUMENTER_KEY }}

.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+
3+
on:
4+
push:
5+
branches: "master"
6+
tags: ["*"]
7+
pull_request:
8+
release:
9+
10+
env:
11+
PYTHON: ""
12+
13+
jobs:
14+
test:
15+
name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.julia-arch }}
16+
runs-on: ${{ matrix.os }}
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
julia-version:
21+
- "1.0"
22+
- "1"
23+
- "nightly"
24+
os:
25+
- ubuntu-latest
26+
- macos-latest
27+
- windows-latest
28+
julia-arch:
29+
- x64
30+
steps:
31+
- uses: actions/checkout@v3
32+
- uses: julia-actions/setup-julia@v1
33+
with:
34+
version: ${{ matrix.julia-version }}
35+
arch: ${{ matrix.julia-arch }}
36+
- uses: julia-actions/cache@v1
37+
- uses: julia-actions/julia-buildpkg@latest
38+
- uses: julia-actions/julia-runtest@latest
39+
- uses: julia-actions/julia-uploadcodecov@v0.1
40+
continue-on-error: true
41+
- uses: julia-actions/julia-uploadcoveralls@v0.1
42+
continue-on-error: true

.travis.yml

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

Project.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ SkyCoords = "fc659fc5-75a3-5475-a2ea-3da92c065361"
1010
WCS = "15f3aee2-9e10-537f-b834-a6fb8bdb944d"
1111

1212
[compat]
13-
julia = "^1.0.0"
13+
FITSIO = "0.12, 0.13, 0.14, 0.15, 0.16"
14+
Interpolations = "0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 0.10, 0.11, 0.12"
15+
SkyCoords = "0.3"
16+
WCS = "0.4, 0.5"
17+
julia = "1"
1418

1519
[extras]
1620
Conda = "8f4d0f93-b110-5947-807f-2305c1781a2d"

0 commit comments

Comments
 (0)