Skip to content

Commit

Permalink
Fix codespell (#201)
Browse files Browse the repository at this point in the history
Fix CodeSpell that fails on a false positive. Its not clear why this began but my hunch is that the `@master` was playing a part. v1.0 was released 4 days ago.
  • Loading branch information
mergify[bot] authored Aug 23, 2022
2 parents 1797e4b + 812ae6b commit b99c859
Showing 1 changed file with 23 additions and 22 deletions.
45 changes: 23 additions & 22 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,35 +14,36 @@ jobs:
matrix:
target: ["verify", "lint", "test"]
steps:
- name: checkout
uses: actions/checkout@v3
- uses: ./.github/actions/setup-go
- uses: actions/cache@v3
with:
path: hack/tools/bin
key: ${{ runner.os }}-tools-bin-${{ matrix.target }}-${{ hashFiles('Makefile') }}
restore-keys: |
${{ runner.os }}-tools-bin-${{ matrix.target }}-
${{ runner.os }}-tools-bin-
- uses: actions/cache@v3
if: ${{ matrix.target == 'test' }}
with:
path: /tmp/kubebuilder-tools-*.tar.gz
key: ${{ runner.os }}-tmp-${{ matrix.target }}-${{ hashFiles('scripts/fetch_ext_bins.sh') }}
restore-keys: |
${{ runner.os }}-tmp-${{ matrix.target }}-
${{ runner.os }}-tmp-
- name: ${{ matrix.target }}
run: make ${{ matrix.target }}
- name: checkout
uses: actions/checkout@v3
- uses: ./.github/actions/setup-go
- uses: actions/cache@v3
with:
path: hack/tools/bin
key: ${{ runner.os }}-tools-bin-${{ matrix.target }}-${{ hashFiles('Makefile') }}
restore-keys: |
${{ runner.os }}-tools-bin-${{ matrix.target }}-
${{ runner.os }}-tools-bin-
- uses: actions/cache@v3
if: ${{ matrix.target == 'test' }}
with:
path: /tmp/kubebuilder-tools-*.tar.gz
key: ${{ runner.os }}-tmp-${{ matrix.target }}-${{ hashFiles('scripts/fetch_ext_bins.sh') }}
restore-keys: |
${{ runner.os }}-tmp-${{ matrix.target }}-
${{ runner.os }}-tmp-
- name: ${{ matrix.target }}
run: make ${{ matrix.target }}
codespell:
name: Codespell
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Codespell
uses: codespell-project/actions-codespell@master
uses: codespell-project/actions-codespell@v1.0
with:
check_filenames: true
check_hidden: true
skip: './.git,./go.mod,./go.sum'
skip: "./.git,./go.mod,./go.sum"
ignore_words_list: ro

0 comments on commit b99c859

Please sign in to comment.