Skip to content

Commit 44bf7b5

Browse files
committed
More cleanup
1 parent f26021a commit 44bf7b5

File tree

6 files changed

+23
-7
lines changed

6 files changed

+23
-7
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
arch:
2525
- x64
2626
steps:
27-
- uses: actions/checkout@v2
28-
- uses: julia-actions/setup-julia@v1
27+
- uses: actions/checkout@v6
28+
- uses: julia-actions/setup-julia@v2
2929
with:
3030
version: ${{ matrix.version }}
3131
arch: ${{ matrix.arch }}
3232
include-all-prereleases: true
33-
- uses: julia-actions/cache@v1
33+
- uses: julia-actions/cache@v2
3434
- uses: julia-actions/julia-buildpkg@v1
3535
- uses: julia-actions/julia-runtest@v1

.github/workflows/documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v6
1515
- uses: julia-actions/setup-julia@latest
1616
with:
1717
version: '1.12'
@@ -23,4 +23,4 @@ jobs:
2323
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
2424
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2525
- uses: julia-actions/julia-processcoverage@v1
26-
- uses: codecov/codecov-action@v1
26+
- uses: codecov/codecov-action@v5

Project.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,6 @@ Graphs = "1.3"
1414
PrecompileTools = "1"
1515
StaticArrays = "0.12, 1.0"
1616
julia = "1.6"
17+
18+
[workspace]
19+
projects = ["test", "docs"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PeriodicGraphs
22

3-
[![Build Status](https://ci.appveyor.com/api/projects/status/github/Liozou/PeriodicGraphs.jl?svg=true)](https://ci.appveyor.com/project/Liozou/PeriodicGraphs-jl)
3+
[![Build Status](https://github.com/Liozou/PeriodicGraphs.jl/actions/workflows/CI.yml/badge.svg?branch=master)](https://github.com/Liozou/PeriodicGraphs.jl/actions/workflows/CI.yml?query=branch%3Amaster)
44
[![codecov](https://codecov.io/gh/Liozou/PeriodicGraphs.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/Liozou/PeriodicGraphs.jl)
55
[![Documentation](https://img.shields.io/badge/docs-latest-blue.svg)](https://liozou.github.io/PeriodicGraphs.jl/)
66
[![Aqua QA](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl)

docs/Project.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
33
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
44
Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306"
5+
PeriodicGraphs = "18c5b727-b240-4874-878a-f2e242435bab"
6+
7+
[sources]
8+
PeriodicGraphs = {path = ".."}
59

610
[compat]
7-
Documenter = "0.27"
11+
Documenter = "1.0"
12+
Literate = "2.0"
813
Graphs = "1.3"

test/Project.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,16 @@
22
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
33
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"
44
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
5+
PeriodicGraphs = "18c5b727-b240-4874-878a-f2e242435bab"
56
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
67
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
78

9+
[sources]
10+
PeriodicGraphs = {path = ".."}
11+
812
[compat]
913
Aqua = "0.5"
14+
Combinatorics = "1.0"
15+
Graphs = "1.3"
16+
StaticArrays = "0.12, 1.0"
17+
Test = "1.10"

0 commit comments

Comments
 (0)