-
-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (37 loc) · 1.04 KB
/
characters.yml
File metadata and controls
43 lines (37 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
name: "Characters"
on: # yamllint disable-line rule:truthy
push:
branches:
- "master"
pull_request: null
# Add [skip ci] to commit message to skip CI.
permissions:
contents: "read"
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
spelling:
name: "Spelling"
runs-on: "ubuntu-24.04"
steps:
-
name: "Checkout repository"
uses: "actions/checkout@v4"
-
name: "Search for misspellings"
uses: "crate-ci/typos@master"
editorconfig:
name: "EditorConfig"
runs-on: "ubuntu-24.04"
steps:
-
name: "Checkout repository"
uses: "actions/checkout@v4"
-
name: "Check EditorConfig configuration"
run: "test -f .editorconfig"
-
name: "Check adherence to EditorConfig"
uses: "greut/eclint-action@v0"