Bump actions/setup-python from 4 to 5 #26
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |