Skip to content

Run workflows if the workflow is edited #8

Run workflows if the workflow is edited

Run workflows if the workflow is edited #8

Workflow file for this run

name: polite-config actions
on:
push:
branches: [ next ]
paths:
- '.github/workflows/polite-config.yml'
- 'packages/polite-config/**'
pull_request:
branches: [ next ]
paths:
- '.github/workflows/polite-config.yml'
- 'packages/polite-config/**'
jobs:
pytest:
name: Unit tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest]
defaults:
run:
working-directory: packages/polite-config
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-python@v5
with:
python-version: 3.13
- name: Install poetry
uses: abatilo/actions-poetry@v2
- name: Install package
run: |
poetry install --with test
- name: Run tests
run: |
poetry run pytest --cov --cov-report=xml tests
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
flags: polite-config