Skip to content

Commit

Permalink
ci: Add daily action test workflow [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
peaceiris committed Jan 17, 2020
1 parent 6e68c1a commit 4927a0d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Daily Test

on:
push:
schedule:
- cron: '14 14 * * *'

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- 'ubuntu-18.04'
- 'macos-latest'
- 'windows-latest'
mdbook-version:
- 'latest'
- '0.3.4'
steps:

- uses: actions/checkout@v2

- name: Setup mdBook
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: ${{ matrix.mdbook-version }}

- run: mdbook --version

0 comments on commit 4927a0d

Please sign in to comment.