Skip to content

DEBUGGING

DEBUGGING #11

Workflow file for this run

---
name: Publish
on: push # yamllint disable-line rule:truthy
jobs:
build:
name: Build distribution package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install pypa/build
run: python -m pip install --user build==1.2.1 pyproject_hooks==1.0.0 setuptools==69.2.0
- name: Build a binary wheel and a source tarball
run: python -m build
- run: tar -tvf dist/yamllint-1.36.1.tar.gz