Skip to content

Bump github.com/spf13/viper from 1.17.0 to 1.18.0 #225

Bump github.com/spf13/viper from 1.17.0 to 1.18.0

Bump github.com/spf13/viper from 1.17.0 to 1.18.0 #225

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