Skip to content

Commit 8d18786

Browse files
authored
Fix GitHub username (#9)
1 parent 7ea27cb commit 8d18786

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,13 @@ jobs:
2020
matrix:
2121
version:
2222
- '1.9'
23+
- '1'
2324
os:
2425
- ubuntu-latest
2526
arch:
2627
- x64
2728
steps:
28-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
2930
- uses: julia-actions/setup-julia@v1
3031
with:
3132
version: ${{ matrix.version }}

LICENSE

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

3-
Copyright (c) 2023 Guillaume Dalle <22795598+gdalle@users.noreply.github.com> and contributors
3+
Copyright (c) 2023 Guillaume Dalle and contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# GraphsInterfaceChecker
22

3-
[![Build Status](https://github.com/gdalle/GraphsInterfaceChecker.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/gdalle/GraphsInterfaceChecker.jl/actions/workflows/CI.yml?query=branch%3Amain)
3+
[![Build Status](https://github.com/JuliaGraphs/GraphsInterfaceChecker.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/JuliaGraphs/GraphsInterfaceChecker.jl/actions/workflows/CI.yml?query=branch%3Amain)
44

55
Formalization of the [`AbstractGraph` interface](https://juliagraphs.org/Graphs.jl/stable/ecosystem/interface/) from [Graphs.jl](https://github.com/JuliaGraphs/Graphs.jl), specified using [Interfaces.jl](https://github.com/rafaqz/Interfaces.jl).
66

@@ -11,7 +11,7 @@ Install GraphsInterfaceChecker.jl using the GitHub URL, and install Interfaces.j
1111
```julia
1212
using Pkg
1313

14-
Pkg.add(url="https://github.com/gdalle/GraphsInterfaceChecker.jl")
14+
Pkg.add(url="https://github.com/JuliaGraphs/GraphsInterfaceChecker.jl")
1515
Pkg.add("Interfaces")
1616

1717
using GraphsInterfaceChecker

0 commit comments

Comments
 (0)