mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
This test is using the galaxy_importer from ansible project. The
configuration file galaxy-importer.cfg is copied from linux-system-roles
https://github.com/linux-system-roles/auto-maintenance/blob/master/\
lsr_role2collection/galaxy-importer.cfg
The tests script has extra code to parse the output of the importer to
highlight errors and to exit with a proper error code.
The test can be used locally also with "sh tests/sanity/sanity.sh"
New files:
- .github/workflows/ansible-test.yml
- tests/sanity/galaxy-importer.cfg
- tests/sanity/sanity.sh
18 lines
381 B
YAML
18 lines
381 B
YAML
---
|
|
name: ansible-test sanity
|
|
on:
|
|
- push
|
|
- pull_request
|
|
jobs:
|
|
ansible_test:
|
|
name: Verify ansible-test sanity
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Install virtualenv using pip
|
|
run: pip install virtualenv
|
|
- name: Run ansible-test
|
|
run: bash tests/sanity/sanity.sh
|