We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93a0c9c commit bca8ce5Copy full SHA for bca8ce5
1 file changed
.github/workflows/windowsTest
@@ -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
20
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