Merge pull request #362 from JoergAtGithub/corrected_tags_wrong_term_… #1197
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: Build | |
on: | |
push: | |
pull_request: | |
jobs: | |
build-check: | |
name: Check build warnings | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Set up Python dependencies | |
run: pip install -r requirements.txt | |
- name: Check if website build is warning-free | |
run: pelican --extra-settings SITEURL='"https://example.com"' --fatal warnings |