Skip to content

build(deps): bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.2 #929

build(deps): bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.2

build(deps): bump pypa/gh-action-pypi-publish from 1.9.0 to 1.10.2 #929

Workflow file for this run

name: PyTest
on:
- push
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out repository code
uses: actions/checkout@v4
# Setup Python (faster than using Python container)
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
curl -sSL https://install.python-poetry.org | python - --preview
poetry install
- name: Run test suite
run: |
poetry run pytest --cov=./ --cov-report=xml
- name: Coverage upload
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
directory: ./coverage/reports/
files: ./coverage.xml # optional
# flags: unittests # optional
name: codecov-umbrella # optional
# fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)