Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
updated compat bounds (#1499)
Browse files Browse the repository at this point in the history
* updated compat bounds

* added compathelper workflow yaml

* updated travis and appveyor

* killed travis in favor of github ci

* oops - wrong ci branch
  • Loading branch information
ExpandingMan authored Dec 9, 2020
1 parent b179ea8 commit 616e715
Show file tree
Hide file tree
Showing 7 changed files with 100 additions and 38 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: '00 00 * * *'
workflow_dispatch:
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 }}
COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }} # optional
run: julia -e 'using CompatHelper; CompatHelper.main()'
27 changes: 27 additions & 0 deletions .github/workflows/ci-nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI-nightly
on:
push:
branches: [stable]
tags: [v*]
pull_request:

jobs:
test:
name: Julia nightly - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: nightly
arch: x64
- uses: julia-actions/julia-buildpkg@latest
# remove this after 2.0
- name: test package
run: julia --color=yes --project -e 'using Pkg; Pkg.test(coverage=true, julia_args=["--depwarn=no"])'
# uncomment after 2.0
# - uses: julia-actions/julia-runtest@latest
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: CI
on:
push:
branches: [stable]
tags: [v*]
pull_request:

jobs:
test:
name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: [1]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
arch: x64
- uses: julia-actions/julia-buildpkg@latest
# remove this after 2.0
- name: test package
run: julia --color=yes --project -e 'using Pkg; Pkg.test(coverage=true, julia_args=["--depwarn=no"])'
# uncomment after 2.0
# - uses: julia-actions/julia-runtest@latest
- uses: julia-actions/julia-uploadcodecov@latest
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
if: ${{ matrix.julia-version == '1' && matrix.os =='ubuntu-latest' }}
20 changes: 20 additions & 0 deletions .github/workflows/documenter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Documenter
on:
push:
branches: [stable]
tags: [v*]
pull_request:

jobs:
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: 1.4
- uses: julia-actions/julia-docdeploy@releases/v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
32 changes: 0 additions & 32 deletions .travis.yml

This file was deleted.

10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "LightGraphs"
uuid = "093fc24a-ae57-5d10-9952-331d41423f4d"
version = "1.3.3"
version = "1.3.4"

[deps]
ArnoldiMethod = "ec485272-7323-5ecc-a04f-4719b315124d"
Expand All @@ -27,7 +27,7 @@ test = ["Base64", "DelimitedFiles", "Test"]

[compat]
julia = "1"
ArnoldiMethod = "0.0.4"
DataStructures = "0.17.9, 0.18"
Inflate = "0.1.1"
SimpleTraits = "0.9.1"
ArnoldiMethod = "0.0"
DataStructures = "0.17, 0.18"
Inflate = "0.1"
SimpleTraits = "0.9"
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
environment:
matrix:
- julia_version: 1.2
- julia_version: 1
- julia_version: nightly

platform:
Expand Down

0 comments on commit 616e715

Please sign in to comment.