Skip to content

Commit

Permalink
ci: Add action test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
peaceiris authored Jan 17, 2020
1 parent 48ef2db commit 37cc539
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 37cc539

Please sign in to comment.