-
Notifications
You must be signed in to change notification settings - Fork 567
48 lines (44 loc) · 1.22 KB
/
codespell.yml
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
44
45
46
47
48
# Checks the spelling on all non-third-party files.
name: Codespell
on:
workflow_dispatch:
push:
branches-ignore:
- 'dependabot/**'
paths-ignore:
- 'm4/**'
- COPYING
pull_request:
paths-ignore:
- 'm4/**'
- COPYING
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
codespell:
runs-on: ubuntu-22.04
timeout-minutes: 5
steps:
- name: Harden Runner
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde
with:
egress-policy: block
allowed-endpoints: >
archive.ubuntu.com:80
azure.archive.ubuntu.com:80
github.com:443
packages.microsoft.com:443
ppa.launchpadcontent.net:443
security.ubuntu.com:80
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- name: update package information
run: sudo apt-get update -qy
- name: install dependencies
run: sudo apt-get install -qy codespell
- name: print env
run: ./ci/printenv.sh
- name: configure
run: ./configure || (cat config.log; exit 1)
- run: codespell --version
- name: codespell
run: make codespell