Skip to content

Commit

Permalink
codespell workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
KasukabeDefenceForce committed Aug 21, 2024
1 parent 5fe6806 commit 3fb40a9
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: codespell

on:
push:
branches:
- development
- main
pull_request:
branches:
- development

jobs:
codespell:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: "pip"

- name: Install dependencies
run: pip install -r ./requirements.txt

- name: Run codespell
run: |
codespell

0 comments on commit 3fb40a9

Please sign in to comment.