mirror of
https://github.com/peaceiris/actions-hugo.git
synced 2025-05-04 22:35:27 +08:00
ci: Add action test workflow
This commit is contained in:
parent
48ef2dbba3
commit
37cc539052
33
.github/workflows/test-action.yml
vendored
Normal file
33
.github/workflows/test-action.yml
vendored
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
name: Daily Test
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
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
|
Loading…
Reference in New Issue
Block a user