File tree Expand file tree Collapse file tree 6 files changed +58
-67
lines changed Expand file tree Collapse file tree 6 files changed +58
-67
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
name : CompatHelper
2
-
3
2
on :
4
3
schedule :
5
- - cron : ' 00 * * * *'
6
-
4
+ - cron : 0 0 * * *
5
+ workflow_dispatch :
7
6
jobs :
8
- build :
9
- runs-on : ${{ matrix.os }}
10
- strategy :
11
- matrix :
12
- julia-version : [1.2.0]
13
- julia-arch : [x86]
14
- os : [ubuntu-latest]
7
+ CompatHelper :
8
+ runs-on : ubuntu-latest
15
9
steps :
16
- - uses : julia-actions/setup-julia@latest
17
- with :
18
- version : ${{ matrix.julia-version }}
19
- - name : Install dependencies
20
- run : julia -e 'using Pkg; Pkg.add(Pkg.PackageSpec(name = "CompatHelper", url = "https://github.com/bcbi/CompatHelper.jl.git"))'
21
- - name : CompatHelper.main
10
+ - name : Pkg.add("CompatHelper")
11
+ run : julia -e 'using Pkg; Pkg.add("CompatHelper")'
12
+ - name : CompatHelper.main()
22
13
env :
23
14
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
24
- JULIA_DEBUG : CompatHelper
15
+ COMPATHELPER_PRIV : ${{ secrets.DOCUMENTER_KEY }}
25
16
run : julia -e 'using CompatHelper; CompatHelper.main()'
Original file line number Diff line number Diff line change 1
1
name : TagBot
2
2
on :
3
- schedule :
4
- - cron : 0 * * * *
3
+ issue_comment :
4
+ types :
5
+ - created
6
+ workflow_dispatch :
5
7
jobs :
6
8
TagBot :
9
+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
7
10
runs-on : ubuntu-latest
8
11
steps :
9
12
- uses : JuliaRegistries/TagBot@v1
10
13
with :
11
14
token : ${{ secrets.GITHUB_TOKEN }}
15
+ ssh : ${{ secrets.DOCUMENTER_KEY }}
Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ - push
4
+ - pull_request
5
+ jobs :
6
+ test :
7
+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
8
+ runs-on : ${{ matrix.os }}
9
+ strategy :
10
+ fail-fast : false
11
+ matrix :
12
+ version :
13
+ - ' 1.1'
14
+ - ' nightly'
15
+ os :
16
+ - ubuntu-latest
17
+ - macOS-latest
18
+ - windows-latest
19
+ arch :
20
+ - x64
21
+ steps :
22
+ - uses : actions/checkout@v2
23
+ - uses : julia-actions/setup-julia@v1
24
+ with :
25
+ version : ${{ matrix.version }}
26
+ arch : ${{ matrix.arch }}
27
+ - uses : actions/cache@v1
28
+ env :
29
+ cache-name : cache-artifacts
30
+ with :
31
+ path : ~/.julia/artifacts
32
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
33
+ restore-keys : |
34
+ ${{ runner.os }}-test-${{ env.cache-name }}-
35
+ ${{ runner.os }}-test-
36
+ ${{ runner.os }}-
37
+ - uses : julia-actions/julia-buildpkg@v1
38
+ - uses : julia-actions/julia-runtest@v1
39
+ - uses : julia-actions/julia-processcoverage@v1
40
+ - uses : codecov/codecov-action@v1
41
+ with :
42
+ file : lcov.info
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# WhereTheWaterFlows
2
2
3
- <!-- [](https://mauro3.github.io/WhereTheWaterFlows.jl/stable) -->
4
- <!-- [](https://mauro3.github.io/WhereTheWaterFlows.jl/dev) -->
5
- [ ![ Build Status] ( https://travis-ci.com/mauro3/WhereTheWaterFlows.jl.svg?branch=master )] ( https://travis-ci.com/mauro3/WhereTheWaterFlows.jl )
3
+ [ ![ Build Status] ( https://github.com/mauro3/WhereTheWaterFlows.jl/workflows/CI/badge.svg )] ( https://github.com/mauro3/WhereTheWaterFlows.jl/actions )
6
4
[ ![ Build Status] ( https://ci.appveyor.com/api/projects/status/github/mauro3/WhereTheWaterFlows.jl?svg=true )] ( https://ci.appveyor.com/project/mauro3/WhereTheWaterFlows-jl )
7
- <!-- [](https://cirrus-ci.com/github/mauro3/WhereTheWaterFlows.jl) -->
8
- [ ![ Codecov] ( https://codecov.io/gh/mauro3/WhereTheWaterFlows.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/mauro3/WhereTheWaterFlows.jl )
9
- <!-- [](https://coveralls.io/github/mauro3/WhereTheWaterFlows.jl?branch=master) -->
10
-
5
+ [ ![ Coverage] ( https://codecov.io/gh/mauro3/WhereTheWaterFlows.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/mauro3/WhereTheWaterFlows.jl )
11
6
12
7
This package implements the D8 flow routing algorithm [ 1] as well as a
13
8
basin-filling algorithm, also by [ 1] . It uses a O(n), recursive algorithm
You can’t perform that action at this time.
0 commit comments