Skip to content

Commit

Permalink
ci: add codespell action
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-mitchell committed Sep 13, 2023
1 parent 21e53c0 commit d84887b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: codespell
on: [pull_request]
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: codespell-project/[email protected]
4 changes: 2 additions & 2 deletions tst/standard/labels.tst
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ gap> gr := RandomDigraph(10);;
gap> DigraphVertexLabels(gr);
[ 1 .. 10 ]
gap> SetDigraphVertexLabels(gr, ["a", "b", 10]);
Error, the 2nd arument <names> must be a list with length equal to the number \
of vertices of the digraph <D> that is the 1st argument,
Error, the 2nd argument <names> must be a list with length equal to the number\
of vertices of the digraph <D> that is the 1st argument,
gap> gr := RandomDigraph(3);;
gap> SetDigraphVertexLabels(gr, ["a", "b", 10]);
gap> DigraphVertexLabels(gr);
Expand Down

0 comments on commit d84887b

Please sign in to comment.