Skip to content

Merge pull request #7 from codespell-project/dependabot/github_action… #25

Merge pull request #7 from codespell-project/dependabot/github_action…

Merge pull request #7 from codespell-project/dependabot/github_action… #25

Workflow file for this run

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@v4
- 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@v4
- 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