Skip to content

Commit

Permalink
compat upper bounds, compat helper github action
Browse files Browse the repository at this point in the history
github actions to run:
- every monday at 1:30 UTC for compat helper
- every tuesday at 10am UTC for tagbot
  • Loading branch information
cecileane committed May 4, 2020
1 parent 0109a26 commit bd5aaa5
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 6 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: CompatHelper

on:
schedule:
- cron: '30 01 * * MON'

jobs:
CompatHelper:
runs-on: ubuntu-latest
steps:
- name: Pkg.add("CompatHelper")
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
- name: CompatHelper.main()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: julia -e 'using CompatHelper; CompatHelper.main()'
2 changes: 1 addition & 1 deletion .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: TagBot
on:
schedule:
- cron: 0 * * * *
- cron: '00 10 * * TUE'
jobs:
TagBot:
runs-on: ubuntu-latest
Expand Down
12 changes: 7 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@ Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
RCall = "6f49c342-dc21-5d91-9882-a32aef131414"

[compat]
DataFrames = "≥ 0.13.0"
Gadfly = "≥ 1.0.0"
PhyloNetworks = "≥ 0.9.0"
RCall = "≥ 0.11.0"
julia = "≥ 0.7.0"
ColorTypes = "0.7, 0.8, 0.9, 0.10"
Colors = "0.9, 0.10, 0.11, 0.12"
DataFrames = "0.13, 0.14, 0.15, 0.16, 0.17, 0.18, 0.19, 0.20"
Gadfly = "1.0, 1.1, 1.2"
PhyloNetworks = "0.9, 0.10, 0.11"
RCall = "0.11, 0.12, 0.13"
julia = "0.7, 1.0, 1.1, 1.2, 1.3, 1.4"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down

2 comments on commit bd5aaa5

@cecileane
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

showIntNodeLabel true by default

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/14156

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.2 -m "<description of version>" bd5aaa53394b9f1681fd1f5c0dee0767c8c50a29
git push origin v0.2.2

Please sign in to comment.