Skip to content

Commit 306244b

Browse files
authored
Merge pull request #99 from queryverse/julia-pkgbutler-updates
Julia Package Butler Updates
2 parents 5d469cd + 94f69e4 commit 306244b

File tree

7 files changed

+114
-75
lines changed

7 files changed

+114
-75
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Run CI on master
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
test:
10+
runs-on: ${{ matrix.os }}
11+
strategy:
12+
matrix:
13+
julia-version: [1.0.5, 1.1.1, 1.2.0, 1.3.0]
14+
julia-arch: [x64, x86]
15+
os: [ubuntu-latest, windows-latest, macOS-latest]
16+
exclude:
17+
- os: macOS-latest
18+
julia-arch: x86
19+
20+
steps:
21+
- uses: actions/[email protected]
22+
- uses: julia-actions/setup-julia@latest
23+
with:
24+
version: ${{ matrix.julia-version }}
25+
arch: ${{ matrix.julia-arch }}
26+
- uses: julia-actions/julia-buildpkg@latest
27+
env:
28+
PYTHON: ""
29+
- uses: julia-actions/julia-runtest@latest
30+
env:
31+
PYTHON: ""
32+
- uses: julia-actions/julia-uploadcodecov@latest
33+
env:
34+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Run CI on PR
2+
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
7+
jobs:
8+
test:
9+
runs-on: ${{ matrix.os }}
10+
strategy:
11+
matrix:
12+
julia-version: [1.0.5, 1.1.1, 1.2.0, 1.3.0]
13+
julia-arch: [x64, x86]
14+
os: [ubuntu-latest, windows-latest, macOS-latest]
15+
exclude:
16+
- os: macOS-latest
17+
julia-arch: x86
18+
19+
steps:
20+
- uses: actions/[email protected]
21+
- uses: julia-actions/setup-julia@latest
22+
with:
23+
version: ${{ matrix.julia-version }}
24+
arch: ${{ matrix.julia-arch }}
25+
- uses: julia-actions/julia-buildpkg@latest
26+
env:
27+
PYTHON: ""
28+
- uses: julia-actions/julia-runtest@latest
29+
env:
30+
PYTHON: ""
31+
- uses: julia-actions/julia-uploadcodecov@latest
32+
env:
33+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Run CompatHelper
2+
3+
on:
4+
schedule:
5+
- cron: '00 * * * *'
6+
issues:
7+
types: [opened, reopened]
8+
9+
jobs:
10+
compathelper:
11+
name: "Run CompatHelper.jl"
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: julia-actions/setup-julia@latest
15+
with:
16+
version: 1.3.0
17+
- name: Pkg.add("CompatHelper")
18+
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
19+
- name: CompatHelper.main()
20+
env:
21+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
run: julia -e 'using CompatHelper; CompatHelper.main()'
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Deploy documentation
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
tags:
8+
- v*
9+
10+
jobs:
11+
docdeploy:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/[email protected]
15+
- uses: julia-actions/setup-julia@latest
16+
with:
17+
version: 1.3.0
18+
- uses: julia-actions/julia-buildpkg@latest
19+
env:
20+
PYTHON: ""
21+
- uses: julia-actions/julia-docdeploy@releases/v1
22+
env:
23+
DOCUMENTER_KEY: ${{ secrets.JLPKGBUTLER_TOKEN }}
24+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.travis.yml

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

appveyor.yml

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

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
33

44
[compat]
5-
Documenter = "~0.21"
5+
Documenter = "~0.24"

0 commit comments

Comments
 (0)