Skip to content

Commit 3e9bac9

Browse files
authored
Test consecutive PR (JuliaGraphs#346)
Merge all new advancements on the `benchx` branch in order to do a follow up consecutive PR to test github actions
1 parent b274d35 commit 3e9bac9

File tree

36 files changed

+801
-949
lines changed

36 files changed

+801
-949
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/" # Location of package manifests
6+
schedule:
7+
interval: "monthly"

.github/workflows/TagBot.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ on:
44
types:
55
- created
66
workflow_dispatch:
7+
inputs:
8+
lookback:
9+
default: 3
10+
permissions:
11+
actions: read
12+
checks: read
13+
contents: write
14+
deployments: read
15+
issues: read
16+
discussions: read
17+
packages: read
18+
pages: read
19+
pull-requests: read
20+
repository-projects: read
21+
security-events: read
22+
statuses: read
723
jobs:
824
TagBot:
925
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
@@ -12,4 +28,6 @@ jobs:
1228
- uses: JuliaRegistries/TagBot@v1
1329
with:
1430
token: ${{ secrets.GITHUB_TOKEN }}
31+
# Edit the following line to reflect the actual name of the GitHub Secret containing your private key
1532
ssh: ${{ secrets.DOCUMENTER_KEY }}
33+
# ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }}

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ jobs:
3535
- version: '1.6'
3636
allow_failure: false
3737
steps:
38-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v4
3939
- uses: julia-actions/setup-julia@v1
4040
with:
4141
version: ${{ matrix.version }}
4242
arch: ${{ matrix.arch }}
43-
- uses: actions/cache@v1
43+
- uses: actions/cache@v4
4444
env:
4545
cache-name: cache-artifacts
4646
with:
@@ -53,14 +53,16 @@ jobs:
5353
- uses: julia-actions/julia-buildpkg@v1
5454
- uses: julia-actions/julia-runtest@v1
5555
- uses: julia-actions/julia-processcoverage@v1
56-
- uses: codecov/codecov-action@v1
56+
- uses: codecov/codecov-action@v4
5757
with:
5858
file: lcov.info
59+
token: ${{ secrets.CODECOV_TOKEN }}
60+
fail_ci_if_error: false
5961
docs:
6062
name: Documentation
6163
runs-on: ubuntu-latest
6264
steps:
63-
- uses: actions/checkout@v2
65+
- uses: actions/checkout@v4
6466
- uses: julia-actions/setup-julia@v1
6567
with:
6668
version: '1'

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,7 @@ benchmark/Manifest.toml
1111
*.cov
1212
/Manifest.toml
1313
notes
14+
/docs/Manifest.toml
15+
/docs/src/index.md
16+
/docs/src/contributing.md
17+
/docs/src/license.md

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
1717

1818
[compat]
1919
Aqua = "0.6"
20-
ArnoldiMethod = "0.1, 0.2"
20+
ArnoldiMethod = "0.3"
2121
Compat = "3.40, 4"
2222
DataStructures = "0.17, 0.18"
2323
Documenter = "0.27"

benchmark/benchmarks.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using BenchmarkTools
22
using Graphs
33

4-
const benchdir = dirname(@__FILE__)
4+
const BENCHDIR = dirname(@__FILE__)
55

66
const DIGRAPHS = Dict{String,DiGraph}(
77
"complete100" => complete_digraph(100), "path500" => path_digraph(500)
@@ -33,7 +33,7 @@ parallelbenchmarks = [
3333
]
3434

3535
foreach(parallelbenchmarks) do bm
36-
include(joinpath(benchdir, bm))
36+
include(joinpath(BENCHDIR, bm))
3737
end
3838

3939
nothing

benchmark/tune.json

Lines changed: 565 additions & 535 deletions
Large diffs are not rendered by default.

docs/Manifest.toml

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

0 commit comments

Comments
 (0)