Skip to content

Merge pull request #193 from brews/dependabot/pip/ruff-0.8.4 #667

Merge pull request #193 from brews/dependabot/pip/ruff-0.8.4

Merge pull request #193 from brews/dependabot/pip/ruff-0.8.4 #667

Workflow file for this run

name: Test
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "3.x"
architecture: x64
cache: 'pip'
cache-dependency-path: 'requirements.txt'
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements.txt
- name: Install package
run: |
pip install .
- name: Format check with ruff
run: |
ruff format --diff
- name: Lint check with ruff
run: |
ruff check
- name: Type check with mypy
run: |
mypy src/dearprudence
- name: Test with pytest
run: |
pytest -v --cov dearprudence --cov-report term-missing --cov-report xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}