fix series_posts hard code display #566
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: Test build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
hugo-version: | |
- 'latest' | |
- '0.95.0' | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: ${{ matrix.hugo-version }} | |
extended: true | |
- name: Run Hugo | |
working-directory: exampleSite | |
run: hugo --themesDir ../.. |