f245604698
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 2.3.4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v2.3.4) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
38 lines
872 B
YAML
38 lines
872 B
YAML
name: Daily Test
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '13 13 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- 'ubuntu-20.04'
|
|
- 'ubuntu-18.04'
|
|
- 'macos-latest'
|
|
- 'windows-latest'
|
|
hugo-version:
|
|
- 'latest'
|
|
- '0.61.0'
|
|
extended:
|
|
- true
|
|
- false
|
|
steps:
|
|
- uses: actions/checkout@v2.3.4
|
|
|
|
- name: Setup Hugo
|
|
uses: peaceiris/actions-hugo@v2
|
|
with:
|
|
hugo-version: ${{ matrix.hugo-version }}
|
|
extended: ${{ matrix.extended }}
|
|
|
|
- name: Run hugo version
|
|
run: echo "::set-output name=hugo_version::$(hugo version)"
|
|
id: hugo_version
|
|
|
|
- name: '${{ steps.hugo_version.outputs.hugo_version }}'
|
|
run: echo '${{ steps.hugo_version.outputs.hugo_version }}'
|