introduce compat helper

pull/279/head
Shuhei Kadowaki 2020-03-04 18:01:36 +09:00
parent d9b37f8244
commit 4cfcc61fb6
1 changed files with 19 additions and 0 deletions

19
.github/workflows/CompatHelper.yml vendored Normal file
View File

@ -0,0 +1,19 @@
name: CompatHelper
on:
schedule:
- cron: '00 00 * * *'
jobs:
CompatHelper:
runs-on: ubuntu-latest
steps:
- uses: julia-actions/setup-julia@latest
with:
version: 1.3
- 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()'