mirror of
https://github.com/kmod-project/kmod.git
synced 2026-01-30 11:25:19 +00:00
This generates a bunch of warnings in CI ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636 Update to ubuntu 24.04 to catch any possible issues and stop using ubuntu-latest. Signed-off-by: Lucas De Marchi <lucas.de.marchi@gmail.com>
24 lines
567 B
YAML
24 lines
567 B
YAML
# SPDX-FileCopyrightText: 2024 Emil Velikov <emil.l.velikov@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
name: Check spelling with codespell
|
|
|
|
on:
|
|
push:
|
|
branches: [master, ci-test]
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
spellcheck:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
- uses: codespell-project/actions-codespell@406322ec52dd7b488e48c1c4b82e2a8b3a1bf630 # v2.1
|
|
with:
|
|
ignore_words_file: .codespellignore
|