add clarity and full-inclusion of rfc9557 format #599
Workflow file for this run
This file contains hidden or 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: JSON Schema | |
on: | |
- push | |
- pull_request | |
jobs: | |
specs-markdown: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: latest | |
cache: npm | |
- run: npm ci | |
- run: npm run lint | |
- run: npm run build -- specs | |
specs-ietf: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- run: pip install --requirement requirements.txt | |
- run: xml2rfc --version | |
- run: make all | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: specification-docs | |
path: | | |
*.html | |
*.txt | |
!requirements.txt |