Skip to content

Commit 537f7f0

Browse files
committed
Merge branch 'master' into naoperators
2 parents 1680086 + 198c050 commit 537f7f0

13 files changed

+184
-80
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Run the Julia Package Butler
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
schedule:
8+
- cron: '0 */1 * * *'
9+
10+
jobs:
11+
butler:
12+
name: "Run Package Butler"
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/[email protected]
16+
- uses: julia-actions/setup-julia@latest
17+
with:
18+
version: 1.3.0
19+
- uses: davidanthoff/julia-pkgbutler@releases/v1
20+
with:
21+
github-token: ${{ secrets.GITHUB_TOKEN }}
22+
ssh-private-key: ${{ secrets.JLPKGBUTLER_TOKEN }}
23+
channel: stable
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: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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 }}
34+
formatlint:
35+
runs-on: ubuntu-latest
36+
steps:
37+
- uses: actions/[email protected]
38+
- uses: julia-actions/setup-julia@latest
39+
- uses: julia-actions/julia-codeformat-lint@releases/v1
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Code Formatting
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
format:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v1
13+
- uses: julia-actions/setup-julia@latest
14+
- uses: julia-actions/julia-codeformat@releases/v1
15+
- name: Create Pull Request
16+
uses: peter-evans/[email protected]
17+
with:
18+
token: ${{ secrets.GITHUB_TOKEN }}
19+
commit-message: Format files using DocumentFormat
20+
title: '[AUTO] Format files using DocumentFormat'
21+
body: '[DocumentFormat.jl](https://github.com/julia-vscode/DocumentFormat.jl) would suggest these formatting changes'
22+
labels: no changelog
23+
branch-suffix: none
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 }}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: TagBot
2+
on:
3+
schedule:
4+
- cron: 0 * * * *
5+
jobs:
6+
TagBot:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v1
10+
- uses: JuliaRegistries/TagBot@v1
11+
with:
12+
token: ${{ secrets.GITHUB_TOKEN }}

.jlpkgbutler.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
template = "bach"

.travis.yml

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

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1515
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
1616

1717
[compat]
18-
IterableTables = "0.8.2"
18+
IterableTables = "0.8.2, 0.9, 0.10, 0.11, 1"
1919
julia = "1"
2020
QueryOperators = "0.9.1"
2121
DataValues = "≥ 0.4.4"

0 commit comments

Comments
 (0)