We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a69610 commit d41d072Copy full SHA for d41d072
2 files changed
.github/workflows/codespell.yaml
@@ -18,5 +18,16 @@ jobs:
18
steps:
19
- name: Checkout
20
uses: actions/checkout@v6
21
- - name: Codespell
22
- uses: codespell-project/actions-codespell@v2
+
+ - name: Set up Python
23
+ uses: actions/setup-python@v6
24
+ with:
25
+ python-version: '3.10'
26
27
+ - name: Install dependencies
28
+ run: |
29
+ python -m pip install --upgrade pip
30
+ pip install codespell tomli
31
32
+ - name: Run Codespell
33
+ run: codespell .
spec_tests/hed-examples
0 commit comments