Attempt to fix CI failures related to PyYAML. #692
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: | |
- uses: actions/checkout@v1 | |
with: | |
fetch-depth: 1 | |
- name: Install pre-requisites | |
run: pip install -r requirements.txt | |
- name: Build | |
run: mkdocs build -v --clean |