We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9561cf3 commit fa77482Copy full SHA for fa77482
.github/workflows/test.yml
@@ -6,7 +6,21 @@ on:
6
pull_request:
7
8
jobs:
9
- test:
+ test-stable:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@master
14
+ - uses: actions/setup-python@v1
15
+ - run: pip install codespell
16
+ - uses: ./
17
+ - name: Check codespell
18
+ run: codespell test/test.txt || true
19
+ - name: Check codespell on an unusually named file
20
+ run: codespell test/test:2.txt || true
21
+ - name: Check codespell on a binary file
22
+ run: codespell test/test.bin || true
23
+ test-master:
24
runs-on: ubuntu-latest
25
steps:
26
- name: Checkout
0 commit comments