⬆️ Update codecov/codecov-action digest to b9fd7d1 (#329) #780
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: 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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Install Poetry | |
run: pipx install poetry | |
- name: Setup Python | |
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5 | |
with: | |
python-version: '3.12' | |
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@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4 |