Skip to content

Commit fa77482

Browse files
committed
Run the tests twice, against master and pip release
1 parent 9561cf3 commit fa77482

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/test.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,21 @@ on:
66
pull_request:
77

88
jobs:
9-
test:
9+
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:
1024
runs-on: ubuntu-latest
1125
steps:
1226
- name: Checkout

0 commit comments

Comments
 (0)