Clean up ordered word count example #82
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: Ruff checks | |
on: pull_request | |
jobs: | |
ruff-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install zambeze and dependencies | |
run: pip install .[dev] | |
- name: Run ruff linter checks | |
run: ruff check . | |
- name: Run ruff formatter checks | |
run: ruff format --check . |