mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-06-10 10:45:55 +00:00
'virtualenv' is an external dependency with the same purpose of Python's 'venv' module. This patch removes the external dependency in favor of the readily available package.
16 lines
306 B
YAML
16 lines
306 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@v3.1.0
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Run ansible-test
|
|
run: bash tests/sanity/sanity.sh
|