Fix: Change answer to Q14 in GitHub Actions to 'yes' instead of 'no #46
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: Check if Hugo builds successfully | |
on: | |
pull_request: | |
branches: | |
- "master" | |
paths-ignore: | |
- ".github/**" | |
- "README.md" | |
- "CONTRIBUTING.md" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v3 | |
with: | |
hugo-version: '0.117.0' | |
- name: Build | |
run: hugo |