Skip to content

Commit e668643

Browse files
committed
More cleanup
1 parent f26021a commit e668643

File tree

6 files changed

+21
-7
lines changed

6 files changed

+21
-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
@@ -3,6 +3,9 @@ uuid = "18c5b727-b240-4874-878a-f2e242435bab"
33
authors = ["Lionel Zoubritzky lionel.zoubritzky@gmail.com"]
44
version = "0.10.4"
55

6+
[workspace]
7+
projects = ["test", "docs"]
8+
69
[deps]
710
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
811
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

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: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
33
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
44
Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306"
55

6+
[sources]
7+
PeriodicGraphs = {path = ".."}
8+
69
[compat]
7-
Documenter = "0.27"
10+
Documenter = "1.0"
11+
Literate = "2.0"
812
Graphs = "1.3"

test/Project.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,12 @@ Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
55
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
66
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
77

8+
[sources]
9+
PeriodicGraphs = {path = ".."}
10+
811
[compat]
912
Aqua = "0.5"
13+
Combinatorics = "1.0"
14+
Graphs = "1.3"
15+
StaticArrays = "0.12, 1.0"
16+
Test = "1.10"

0 commit comments

Comments
 (0)