-
Notifications
You must be signed in to change notification settings - Fork 20
55 lines (45 loc) · 1.26 KB
/
spellcheck.yml
File metadata and controls
55 lines (45 loc) · 1.26 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
44
45
46
47
48
49
50
51
52
53
54
55
name: Spellcheck
on:
pull_request:
branches:
- main
- "release-**"
paths:
- '**.md'
- 'tox.ini'
- '.spellcheck*'
- '.github/workflows/spellcheck.yml' # This workflow file
env:
LC_ALL: en_US.UTF-8
defaults:
run:
shell: bash
permissions:
contents: read
jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- name: "Harden Runner"
uses: step-security/harden-runner@0080882f6c36860b6ba35c610c98ce87d4e2f26f # v2.10.2
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- name: Checkout Code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: Install aspell
run: |
sudo sudo apt-get update
sudo apt-get install -y aspell aspell-en
- name: Setup Python 3.11
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
with:
python-version: 3.11
cache: pip
cache-dependency-path: |
**/pyproject.toml
- name: Install tox dependencies
run: python -m pip install --upgrade tox
- name: Run spellchecker
run: python -m tox -e spellcheck