actions-hugo/.github/workflows/test-action.yml

34 lines
602 B
YAML
Raw Normal View History

2020-01-17 17:16:00 +00:00
name: Daily Test
on:
2020-01-17 17:18:31 +00:00
# push:
2020-01-17 17:16:00 +00:00
schedule:
- cron: '13 13 * * *'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- 'ubuntu-18.04'
- 'macos-latest'
- 'windows-latest'
hugo-version:
- 'latest'
- '0.61.0'
extended:
- true
- false
steps:
- uses: actions/checkout@v2
- name: Setup Hugo
uses: peaceiris/actions-hugo@v2
with:
hugo-version: ${{ matrix.hugo-version }}
extended: ${{ matrix.extended }}
- run: hugo version