Skip to content

build(deps): bump astral-sh/setup-uv from 6.4.3 to 6.6.0 (#158) #247

build(deps): bump astral-sh/setup-uv from 6.4.3 to 6.6.0 (#158)

build(deps): bump astral-sh/setup-uv from 6.4.3 to 6.6.0 (#158) #247

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
permissions: {}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version-file: pyproject.toml
- run: |
make lint INSTALL_EXTRA=lint
check-readme:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version-file: pyproject.toml
- run: python -m pip install .
- name: check-readme
run: |
diff \
<( \
awk '/@begin-abi3audit-help@/{f=1;next} /@end-abi3audit-help@/{f=0} f' \
< README.md | sed '1d;$d' \
) \
<( \
python -m abi3audit --help \
)