mirror of
https://github.com/rocky-linux/os-autoinst-distri-rocky.git
synced 2024-11-01 03:21:24 +00:00
12 lines
294 B
YAML
12 lines
294 B
YAML
|
- hosts: all
|
||
|
tasks:
|
||
|
- name: Install required packages
|
||
|
package:
|
||
|
name: ['os-autoinst', 'perl-Test-Strict', 'perl-Test-Harness']
|
||
|
state: present
|
||
|
become: yes
|
||
|
- name: Run perl tests
|
||
|
command: prove t/
|
||
|
args:
|
||
|
chdir: '{{ zuul.project.src_dir }}'
|