Skip to content

Commit d84887b

Browse files
ci: add codespell action
1 parent 21e53c0 commit d84887b

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/codespell.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: codespell
2+
on: [pull_request]
3+
jobs:
4+
codespell:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v3
8+
- uses: codespell-project/[email protected]

tst/standard/labels.tst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ gap> gr := RandomDigraph(10);;
1818
gap> DigraphVertexLabels(gr);
1919
[ 1 .. 10 ]
2020
gap> SetDigraphVertexLabels(gr, ["a", "b", 10]);
21-
Error, the 2nd arument <names> must be a list with length equal to the number \
22-
of vertices of the digraph <D> that is the 1st argument,
21+
Error, the 2nd argument <names> must be a list with length equal to the number\
22+
of vertices of the digraph <D> that is the 1st argument,
2323
gap> gr := RandomDigraph(3);;
2424
gap> SetDigraphVertexLabels(gr, ["a", "b", 10]);
2525
gap> DigraphVertexLabels(gr);

0 commit comments

Comments
 (0)