diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml new file mode 100644 index 000000000..f9521a22e --- /dev/null +++ b/.github/workflows/codespell.yml @@ -0,0 +1,8 @@ +name: codespell +on: [pull_request] +jobs: + codespell: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: codespell-project/actions-codespell@v1.0 diff --git a/tst/standard/labels.tst b/tst/standard/labels.tst index f2bb80744..de899dc6f 100644 --- a/tst/standard/labels.tst +++ b/tst/standard/labels.tst @@ -18,8 +18,8 @@ gap> gr := RandomDigraph(10);; gap> DigraphVertexLabels(gr); [ 1 .. 10 ] gap> SetDigraphVertexLabels(gr, ["a", "b", 10]); -Error, the 2nd arument must be a list with length equal to the number \ -of vertices of the digraph that is the 1st argument, +Error, the 2nd argument must be a list with length equal to the number\ + of vertices of the digraph that is the 1st argument, gap> gr := RandomDigraph(3);; gap> SetDigraphVertexLabels(gr, ["a", "b", 10]); gap> DigraphVertexLabels(gr);