Mention that decode_from_bit_vec() is linear #2144
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 Document" | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: "Lint document" | |
runs-on: ubuntu-latest | |
container: | |
image: docker://ghcr.io/martinthomson/i-d-template-action:latest | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- name: "Check for typos" | |
run: "bash -c '! grep -r --file=rejected_dictionary draft-irtf-cfrg-vdaf.md poc'" | |
- name: "Check for warnings emitted by xml2rfc" | |
run: | | |
bash -c -o pipefail 'make |& (! grep -E "Warning|Error")' |