Skip to content

Commit

Permalink
Merge pull request #9 from JuliaPlots/smc/compathelper
Browse files Browse the repository at this point in the history
Add CompatHelper
  • Loading branch information
SimonDanisch authored Apr 7, 2020
2 parents 71b9fe2 + 8597e46 commit 6bd8866
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/compathelper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Run CompatHelper

on:
schedule:
- cron: '00 * * * *'
issues:
types: [opened, reopened]

jobs:
compathelper:
name: "Run CompatHelper.jl"
runs-on: ubuntu-latest
steps:
- uses: julia-actions/setup-julia@latest
with:
version: 1.4
- 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()'

0 comments on commit 6bd8866

Please sign in to comment.