Conformance: fix typo: refering -> referring #1412
Workflow file for this run
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
on: pull_request | |
jobs: | |
validate: | |
name: Validate build | |
runs-on: ubuntu-latest | |
container: python:3 | |
steps: | |
- name: Checkout spdx-spec | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7 | |
with: | |
fetch-depth: 1 | |
- name: Install pre-requisites | |
run: pip install -r requirements.txt | |
- name: Build the site to validate (use mkdocs.yml, no model files, no PDF export) | |
run: ENABLE_PDF_EXPORT=0 mkdocs build --clean --verbose | |
# To validate the PR from within spdx-spec repo, build using mkdocs.yml | |
# (no model files) and without the time-consuming PDF export |