make futures small again (#178) #940
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: docs | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
# security: restrict permissions for CI jobs. | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# Build the documentation and upload the static HTML files as an artifact. | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2.7.3 | |
timeout-minutes: 2 | |
continue-on-error: true | |
- name: Install maturin[zig] from PyPI | |
uses: install-pinned/maturin-with-zig@4804d730717f28b7565e71e68e5c9fe8c4f9b089 | |
- name: Install mypy from PyPI | |
uses: install-pinned/mypy@2b552bed479e3f7065314667b670f7303619e989 | |
- name: Install pdoc from PyPI | |
uses: install-pinned/pdoc@183dbb3f880d8b80cf533186fbcbf4449a3c8bff | |
- run: maturin build | |
working-directory: ./mitmproxy-rs | |
- run: pip install --no-index --find-links target/wheels/ mitmproxy_rs | |
- run: stubtest --allowlist mitmproxy-rs/stubtest-allowlist.txt --mypy-config-file mitmproxy-rs/pyproject.toml mitmproxy_rs | |
- run: pdoc -o docs/ mitmproxy_rs | |
- uses: actions/upload-pages-artifact@v3 | |
with: | |
path: docs/ | |
# Deploy the artifact to GitHub pages. | |
# This is a separate job so that only actions/deploy-pages has the necessary permissions. | |
deploy: | |
if: github.ref == 'refs/heads/main' | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
pages: write | |
id-token: write | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- id: deployment | |
uses: actions/deploy-pages@v4 |