Specify that qualifiers must occurr at most once. #31
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: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: Install pre-requisites | |
run: pip install -r requirements.txt | |
- name: Build | |
run: mkdocs build -v --clean |