Skip to content

Bump github.com/onsi/ginkgo/v2 from 2.17.0 to 2.17.1 #239

Bump github.com/onsi/ginkgo/v2 from 2.17.0 to 2.17.1

Bump github.com/onsi/ginkgo/v2 from 2.17.0 to 2.17.1 #239

Workflow file for this run

---
name: Spell check
on:
push:
tags-ignore:
- '**'
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
misspell:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19.x
- name: Check out code
uses: actions/checkout@v3
- name: Install Tool
run: go install github.com/client9/misspell/cmd/misspell@latest
- run: find . -type f | grep -v go.sum | xargs misspell -source=text -error