15 lines
242 B
YAML
15 lines
242 B
YAML
---
|
|
- hosts: localhost
|
|
tags:
|
|
- classic
|
|
roles:
|
|
- role: standard-test-basic
|
|
required_packages:
|
|
- pandoc
|
|
tests:
|
|
- help:
|
|
run: pandoc --help
|
|
- html:
|
|
run: echo -e "# Hello\n## There\nIndeed" | pandoc
|
|
...
|