Skip to content

Bump codecov/codecov-action from 5.5.2 to 5.5.3 #99

Bump codecov/codecov-action from 5.5.2 to 5.5.3

Bump codecov/codecov-action from 5.5.2 to 5.5.3 #99

Workflow file for this run

name: CD

Check failure on line 1 in .github/workflows/cd.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/cd.yml

Invalid workflow file

(Line: 14, Col: 3): The workflow must contain at least one job with no dependencies.
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
release:
types:
- published
jobs:
dist:
needs: [pre-commit]
name: Distribution build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Build sdist and wheel
run: pipx run build
- uses: actions/upload-artifact@v7
with:
path: dist
- name: Check products
run: pipx run twine check dist/*
publish:
needs: [dist]
name: Publish to PyPI
environment: pypi
permissions:
id-token: write
runs-on: ubuntu-latest
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v8
with:
name: artifact
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1
if: github.event_name == 'release' && github.event.action == 'published'
with:
# Remove this line to publish to PyPI
repository-url: https://test.pypi.org/legacy/