#14: Add pytest-cov with min coverage set to 95% #45
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: pr | |
on: | |
- pull_request | |
permissions: | |
contents: read | |
pull-requests: read | |
checks: write | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
PYTHON_VERSION: "3.8" | |
POETRY_VERSION: "1.8.3" | |
RUFF_VERSION: "0.6.7" | |
jobs: | |
check-pr-diff: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Check PR diff size | |
uses: ./.github/actions/large-pr-check | |
with: | |
target_branch: ${{ github.event.pull_request.base.ref }} | |
max_lines_changed: 300 | |
lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Install dependencies | |
run: | | |
pip install --upgrade pip | |
pip install ruff==${{ env.RUFF_VERSION }} | |
- name: Run Ruff | |
run: ruff check --output-format=github . | |
- name: Spell Check | |
uses: crate-ci/typos@master | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-rc.2"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
cache: 'pip' | |
- name: Install Poetry | |
run: pip install poetry==${{ env.POETRY_VERSION }} | |
- name: Restore dependencies from cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pypoetry | |
key: dependencies-cache-${{ runner.os }}-${{ env.PYTHON_VERSION }}-${{ env.POETRY_VERSION }} | |
restore-keys: | | |
dependencies-cache-${{ runner.os }}-${{ env.PYTHON_VERSION }}- | |
- name: Install dependencies | |
if: steps.setup-python.outputs.cache-hit != 'true' | |
run: | | |
poetry config virtualenvs.create false | |
poetry install --no-root --no-interaction | |
- name: Run Pytest on Python ${{ matrix.python }} | |
run: poetry run pytest -m "not integration" |