Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/s-broda/ARCHModels.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
s-broda committed Nov 30, 2019
2 parents 1c64e1e + bbe6024 commit 347e2aa
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 2 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/compathelper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CompatHelper

on:
schedule:
- cron: '00 * * * *'

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: [1.2.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()'
12 changes: 12 additions & 0 deletions .github/workflows/tagbot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: TagBot
on:
schedule:
- cron: 0 * * * *
jobs:
TagBot:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ARCHModels"
uuid = "6d3278bc-c23a-5105-85e5-0d57d2bf684f"
authors = ["Simon Broda <simon.broda@uzh.ch>"]
version = "0.5.2"
version = "0.5.3"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Expand Down Expand Up @@ -30,7 +30,7 @@ Reexport = "0.2.0"
Requires = "0.5.2"
Roots = "0.8.3"
SpecialFunctions = "0.7.2"
StatsBase = "0.31, 0.32, 0.33"
StatsBase = "0.31, 0.32"
StatsFuns = "0.8.0"
StatsModels = "0.6.3"
julia = "1.0.0"
Expand Down

0 comments on commit 347e2aa

Please sign in to comment.