File tree Expand file tree Collapse file tree 8 files changed +172
-43
lines changed Expand file tree Collapse file tree 8 files changed +172
-43
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ name : Bug report
3+ about : Report a bug with GraphMatching
4+ title : " [BUG]"
5+ labels : bug
6+ assignees : ' '
7+
8+ ---
9+
10+ ** Description of bug**
11+ Describe the bug clearly and concisely.
12+
13+
14+ ** How to reproduce**
15+ Detail steps to reproduce the behavior.
16+
17+
18+ ** Expected behavior**
19+ Describe what you expected to happen.
20+
21+
22+ ** Actual behavior**
23+ Describe what actually happened.
24+
25+
26+ ** Code demonstrating bug**
27+ If applicable, provide a minimal working example of the bug.
28+
29+
30+ ** Version information**
31+ - output from ` versioninfo() ` surrounded by backticks (``)
32+ - output from ` ] status Graphs ` surrounded by backticks (``)
33+ - output from ` ] status GraphsMatching ` surrounded by backticks (``)
34+
35+
36+ ** Additional context**
37+ Add any other context about the problem here.
Original file line number Diff line number Diff line change 1+ ---
2+ name : Feature request
3+ about : Suggest an idea for this project
4+ title : ' '
5+ labels : ' '
6+ assignees : ' '
7+
8+ ---
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 1+ name : CompatHelper
2+ on :
3+ schedule :
4+ - cron : ' 00 00 * * *'
5+ workflow_dispatch :
6+ jobs :
7+ CompatHelper :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - name : Pkg.add("CompatHelper")
11+ run : julia -e 'using Pkg; Pkg.add("CompatHelper")'
12+ - name : CompatHelper.main()
13+ env :
14+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
15+ COMPATHELPER_PRIV : ${{ secrets.COMPATHELPER_PRIV }} # optional
16+ run : julia -e 'using CompatHelper; CompatHelper.main()'
Original file line number Diff line number Diff line change 1+ name : TagBot
2+ on :
3+ issue_comment :
4+ types :
5+ - created
6+ 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
23+ jobs :
24+ TagBot :
25+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
26+ runs-on : ubuntu-latest
27+ steps :
28+ - uses : JuliaRegistries/TagBot@v1
29+ with :
30+ token : ${{ secrets.GITHUB_TOKEN }}
31+ # Edit the following line to reflect the actual name of the GitHub Secret containing your private key
32+ ssh : ${{ secrets.DOCUMENTER_KEY }}
33+ # ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }}
Original file line number Diff line number Diff line change 1+ name : CI
2+ env :
3+ JULIA_NUM_THREADS : 2
4+ on :
5+ pull_request :
6+ branches :
7+ - master
8+ push :
9+ branches :
10+ - master
11+ tags : ' *'
12+ jobs :
13+ test :
14+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
15+ runs-on : ${{ matrix.os }}
16+ strategy :
17+ fail-fast : false
18+ matrix :
19+ version :
20+ - ' 1'
21+ - ' 1.10'
22+ os :
23+ - ubuntu-latest
24+ - macos-latest
25+ - windows-latest
26+ arch :
27+ - x64
28+ steps :
29+ - uses : actions/checkout@v4
30+ - uses : julia-actions/setup-julia@v2
31+ with :
32+ version : ${{ matrix.version }}
33+ arch : ${{ matrix.arch }}
34+ - uses : actions/cache@v4
35+ env :
36+ cache-name : cache-artifacts
37+ with :
38+ path : ~/.julia/artifacts
39+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
40+ restore-keys : |
41+ ${{ runner.os }}-test-${{ env.cache-name }}-
42+ ${{ runner.os }}-test-
43+ ${{ runner.os }}-
44+ - uses : julia-actions/julia-buildpkg@v1
45+ - uses : julia-actions/julia-runtest@v1
46+ - uses : julia-actions/julia-processcoverage@v1
47+ - uses : codecov/codecov-action@v4
48+ with :
49+ file : lcov.info
50+ token : ${{ secrets.CODECOV_TOKEN }}
51+ fail_ci_if_error : false
52+ docs :
53+ name : Documentation
54+ runs-on : ubuntu-latest
55+ steps :
56+ - uses : actions/checkout@v4
57+ - uses : julia-actions/setup-julia@v2
58+ with :
59+ version : ' 1'
60+ - run : |
61+ julia --project=docs -e '
62+ using Pkg
63+ Pkg.develop(PackageSpec(path=pwd()))
64+ Pkg.instantiate()'
65+ - run : julia --project=docs docs/make.jl
66+ env :
67+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
68+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }}
Original file line number Diff line number Diff line change 11# GraphsMatching
22
3- [ ![ Build Status] ( https://travis-ci.org/JuliaGraphs/GraphsMatching.jl.svg?branch=master )] ( https://travis-ci.org/JuliaGraphs/GraphsMatching.jl )
4-
5- [ ![ Coverage Status] ( https://coveralls.io/repos/github/JuliaGraphs/GraphsMatching.jl/badge.svg?branch=master )] ( https://coveralls.io/github/JuliaGraphs/GraphsMatching.jl?branch=master )
6-
7- [ ![ codecov] ( https://codecov.io/gh/JuliaGraphs/GraphsMatching.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/JuliaGraphs/GraphsMatching.jl )
3+ [ ![ Build status] ( https://github.com/JuliaGraphs/GraphsMatching.jl/actions/workflows/ci.yml/badge.svg?branch=master )] ( https://github.com/JuliaGraphs/GraphsMatching.jl/actions/workflows/ci.yml?query=branch%3Amaster )
4+ [ ![ Code coverage] ( http://codecov.io/github/JuliaGraphs/GraphsMatching.jl/coverage.svg?branch=master )] ( http://codecov.io/github/JuliaGraphs/GraphsMatching.jl?branch=master )
5+ [ ![ ColPrac: Contributor's Guide on Collaborative Practices for Community Packages] ( https://img.shields.io/badge/ColPrac-Contributor's%20Guide-blueviolet )] ( https://github.com/SciML/ColPrac )
86
97Matching algorithms on top of [ Graphs.jl] ( https://github.com/JuliaGraphs/Graphs.jl ) .
108
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments