8000 Why do I need to sign the CLA again? (#1680) · python/devguide@6cc1e51 · GitHub
[go: up one dir, main page]

Skip to content

Why do I need to sign the CLA again? (#1680) #2792

Why do I need to sign the CLA again? (#1680)

Why do I need to sign the CLA again? (#1680) #2792

Workflow file for this run

1C43
name: Tests
on: [pull_request, push, workflow_dispatch]
env:
FORCE_COLOR: 1
jobs:
test:
name: Check build, markup, and links
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3"
- name: Install uv
uses: hynek/setup-cached-uv@v2
- name: Build docs
run: make html
- name: Link check
run: make linkcheck
continue-on-error: true
0