1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-02-11 01:49:43 -06:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
846 B
YAML
Raw Normal View History

# SPDX-FileCopyrightText: 2023 yuzu Emulator Project
2024-03-22 01:57:42 -03:00
# SPDX-FileCopyrightText: 2024 suyu Emulator Project
# SPDX-License-Identifier: GPL-2.0-or-later
2024-03-22 01:57:42 -03:00
#
# GitHub Action to automate the identification of common misspellings in text files.
# https://github.com/codespell-project/actions-codespell
# https://github.com/codespell-project/codespell
2024-03-22 01:57:42 -03:00
# Actions Documentation: https://forgejo.org/docs/next/user/actions/#list-of-tasks-in-a-repository
name: codespell
2024-03-22 11:42:16 -03:00
on:
push:
2024-03-22 11:46:42 -03:00
branches: [ "*" ]
2024-03-22 11:42:16 -03:00
tags: [ "*" ]
pull_request:
2024-03-22 11:46:42 -03:00
branches: [ "*" ]
2024-03-22 11:42:16 -03:00
permissions: {}
jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
2024-03-22 01:57:42 -03:00
- uses: https://code.forgejo.org/actions/checkout@v3
with:
persist-credentials: false
2024-03-22 11:47:36 -03:00
- uses: https://github.com/codespell-project/actions-codespell@master