Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
MrUrq committed Dec 18, 2019
2 parents 7cda5f1 + 17bd63a commit 6990c12
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

name: CompatHelper

on:
schedule:
- cron: '0 0 * * *'

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: [1.3.0]
julia-arch: [x86]
os: [ubuntu-latest]
steps:
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- name: Install dependencies
run: julia -e 'using Pkg; Pkg.add(Pkg.PackageSpec(name = "CompatHelper", url = "https://github.com/bcbi/CompatHelper.jl.git"))'
- name: CompatHelper.main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
JULIA_DEBUG: CompatHelper
run: >-
julia -e '
using CompatHelper;
CompatHelper.main() do;
run(`julia --project=test -e "import Pkg; Pkg.instantiate(); Pkg.update()"`);
run(`julia --project=docs -e "import Pkg; Pkg.instantiate(); Pkg.update()"`);
end
'

0 comments on commit 6990c12

Please sign in to comment.