build(deps): bump pypa/cibuildwheel from 2.18.1 to 2.19.1 #486
Workflow file for this run
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: Lint and docs | |
on: [push, pull_request] | |
jobs: | |
lint_and_docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Set up dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -qy libdw-dev libelf-dev | |
- name: Install Python dependencies | |
run: | | |
python3 -m pip install -r requirements-extra.txt | |
- name: Install Package | |
run: | | |
python3 -m pip install -e . | |
- name: Lint sources | |
run: | | |
make lint | |
python3 -m pre_commit run --all-files --hook-stage pre-push | |
- name: Build docs | |
run: | | |
towncrier build --version 99.99 --name pystack --keep | |
make docs |