-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (35 loc) · 1018 Bytes
/
test.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
name: Test
on:
push:
branches:
- master
pull_request:
jobs:
test-stable:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: pip install codespell
- uses: ./
- name: Check codespell
run: codespell test/test.txt || true
- name: Check codespell on an unusually named file
run: codespell test/test:2.txt || true
- name: Check codespell on a binary file
run: codespell test/test.bin || true
test-master:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: pip install git+https://github.com/codespell-project/codespell.git
- uses: ./
- name: Check codespell
run: codespell test/test.txt || true
- name: Check codespell on an unusually named file
run: codespell test/test:2.txt || true
- name: Check codespell on a binary file
run: codespell test/test.bin || true