correcting the 116th question answer (suppose to be two correct options) #49
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 |