1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-10 03:47:03 +02:00
goreleaser/.github/workflows/misspell.yml

21 lines
372 B
YAML
Raw Normal View History

name: misspell
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
jobs:
misspell:
name: spellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: misspell
uses: reviewdog/action-misspell@v1
with:
github_token: ${{ secrets.github_token }}
locale: "US"