Skip to content

Commit bca8ce5

Browse files
authored
Create windowsTest
1 parent 93a0c9c commit bca8ce5

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/windowsTest

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: CI Windows
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
build:
7+
runs-on: windows-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
11+
- uses: actions/setup-node@v2-beta
12+
13+
- name: install Pandoc
14+
uses: crazy-max/ghaction-chocolatey@v1
15+
with:
16+
args: install pandoc
17+
18+
- name: install Ruby
19+
uses: crazy-max/ghaction-chocolatey@v1
20+
with:
21+
args: install ruby
22+
23+
- name: install AsciiDoctor
24+
run: gem install asciidoctor
25+
26+
- name: test asciidoctor
27+
run: asciidoctor -v
28+
29+
- name: test pandoc
30+
run: pandoc -v

0 commit comments

Comments
 (0)