suyu/.forgejo/workflows/codespell.yml
Fijxu 649a90ff40
Some checks failed
suyu-ci / Check REUSE Specification (push) Failing after 13s
codespell / Check for spelling errors (push) Successful in 11s
suyu verify / Verify Format (push) Successful in 1m26s
suyu verify / test build (linux-fresh, clang) (push) Successful in 25m33s
suyu verify / test build (linux-mingw, windows) (push) Failing after 4m15s
suyu verify / android (push) Failing after 5m46s
suyu verify / test build (linux-fresh, linux) (push) Successful in 39m50s
ci: Use different runner label for Codespell and Format Verification
2024-03-23 16:39:17 -03:00

30 lines
840 B
YAML

# SPDX-FileCopyrightText: 2023 yuzu Emulator Project
# SPDX-FileCopyrightText: 2024 suyu Emulator Project
# SPDX-License-Identifier: GPL-2.0-or-later
#
# 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
# Actions Documentation: https://forgejo.org/docs/next/user/actions/#list-of-tasks-in-a-repository
name: codespell
on:
push:
branches: [ "*" ]
tags: [ "*" ]
pull_request:
branches: [ "*" ]
permissions: {}
jobs:
codespell:
name: Check for spelling errors
runs-on: verify
steps:
- uses: https://code.forgejo.org/actions/checkout@v3
with:
persist-credentials: false
- uses: https://github.com/codespell-project/actions-codespell@master