Skip to content

Commit fefeeb3

Browse files
committed
switch to github pages
1 parent c9a3931 commit fefeeb3

File tree

8 files changed

+68
-112
lines changed

8 files changed

+68
-112
lines changed

.codecov.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/daily.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: daily
2+
on:
3+
schedule:
4+
- cron: '00 00 * * *'
5+
jobs:
6+
CompatHelper:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: julia-actions/setup-julia@latest
10+
with:
11+
version: 1.3
12+
- run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
13+
- run: julia -e 'using CompatHelper; CompatHelper.main()'
14+
env:
15+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/permanent.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: permanent
2+
on:
3+
push:
4+
branches:
5+
- 'master'
6+
jobs:
7+
document:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: julia-actions/setup-julia@latest
12+
with:
13+
version: '1.3'
14+
- uses: julia-actions/julia-docdeploy@releases/v1
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17+
- uses: JuliaRegistries/TagBot@v1
18+
with:
19+
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: test
2+
on:
3+
- push
4+
- pull_request
5+
jobs:
6+
test:
7+
name: ${{ matrix.version }}
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
version:
12+
- '1.0'
13+
- '1.4'
14+
- 'nightly'
15+
steps:
16+
- uses: actions/checkout@v2
17+
- uses: julia-actions/setup-julia@latest
18+
with:
19+
version: ${{ matrix.version }}
20+
- uses: julia-actions/julia-buildpkg@latest
21+
- uses: julia-actions/julia-runtest@latest
22+
- uses: julia-actions/julia-processcoverage@v1
23+
env:
24+
DISABLE_AMEND_COVERAGE_FROM_SRC: yes
25+
- uses: codecov/codecov-action@v1
26+
with:
27+
file: ./lcov.info
28+
- uses: domluna/JuliaFormatter-action@master
29+
with:
30+
args: -v .
31+
continue-on-error: true

.travis.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,4 @@
1-
# MetaGraphs
1+
# MetaGraphsNext
22

3-
[![Build Status](https://travis-ci.org/JuliaGraphs/MetaGraphs.jl.svg?branch=master)](https://travis-ci.org/JuliaGraphs/MetaGraphs.jl)
4-
[![codecov.io](http://codecov.io/github/JuliaGraphs/MetaGraphs.jl/coverage.svg?branch=master)](http://codecov.io/github/JuliaGraphs/MetaGraphs.jl?branch=master)
5-
[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://juliagraphs.github.io/MetaGraphs.jl/latest)
6-
7-
[LightGraphs.jl](https://github.com/JuliaGraphs/LightGraphs.jl) graphs with arbitrary metadata.
8-
9-
## Documentation
10-
Full documentation is available at [GitHub Pages](https://juliagraphs.github.io/MetaGraphs.jl/latest).
11-
Documentation for methods is also available via the Julia REPL help system.
12-
13-
## Compatibility
14-
We have recently made a large, breaking change to `MetaGraphs`. The metadata at
15-
vertices and edges is now type stable (although you can still attach
16-
type-unstable data by setting `AtEdge` or `AtVertex` to `Any`).
3+
[![Latest](https://img.shields.io/badge/docs-latest-blue.svg)](https://bramtayl.github.io/MetaGraphsNext.jl/latest)
4+
[![CodeCov](https://codecov.io/gh/bramtayl/MetaGraphsNext.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/bramtayl/MetaGraphsNext.jl)

appveyor.yml

Lines changed: 0 additions & 45 deletions
This file was deleted.

codecov.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)