Skip to content

Commit 7d9c228

Browse files
committed
Compat
1 parent ddd49d0 commit 7d9c228

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

Diff for: .github/workflows/CompatHelper.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CompatHelper
2+
on:
3+
schedule:
4+
- cron: '00 00 * * *'
5+
workflow_dispatch:
6+
jobs:
7+
CompatHelper:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Pkg.add("CompatHelper")
11+
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
12+
- name: CompatHelper.main()
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
run: julia -e 'using CompatHelper; CompatHelper.main()'

Diff for: Project.toml

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
1010
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1111

1212
[compat]
13-
NamedArrays = "≥ 0.9.2"
14-
julia = "≥ 1.0.0"
13+
julia = "1"
14+
NamedArrays = "0.9"
15+
RecipesBase = "1"
1516

1617
[extras]
1718
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"

0 commit comments

Comments
 (0)