Skip to content

⬆️ Update codecov/codecov-action digest to 6d79887 (#273) #666

⬆️ Update codecov/codecov-action digest to 6d79887 (#273)

⬆️ Update codecov/codecov-action digest to 6d79887 (#273) #666

Workflow file for this run

name: Coverage
on:
pull_request:
types: [synchronize, opened, edited]
push:
branches: [main]
jobs:
skip:
name: Skip Duplicate Actions
uses: ixm-one/common/.github/workflows/actions.skip.yml@main
coverage:
name: Code Coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- name: Install Poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5
with:
python-version: '3.10'
cache: poetry
- name: Install Tools
run: poetry install --with=dev
- name: Run Tests
run: >-
poetry run pytest
--cov=${{github.workspace}}/src
--cov-branch
-vv
#--numprocesses=auto
- name: Upload Code Coverage
uses: codecov/codecov-action@6d798873df2b1b8e5846dba6fb86631229fbcb17 # v4