tests: add 2 basic CI tests

This commit is contained in:
Jens Petersen 2019-12-15 17:22:53 +08:00
parent 1d1873bd8a
commit e7eb243fd0
1 changed files with 14 additions and 0 deletions

14
tests/tests.yml Normal file
View File

@ -0,0 +1,14 @@
---
- hosts: localhost
tags:
- classic
roles:
- role: standard-test-basic
required_packages:
- cabal-install
tests:
- help:
run: cabal --help
- update:
run: cabal update
...