mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-06-10 02:35:54 +00:00
There are warnings on Github workflows about the need to update actions 'checkout' and 'setup-python' due to the use of Node.js versions that are too old. This patch updates the use of actions/checkout from v2 to v3.1.0, and setup-python from v2 to v4.3.0.
18 lines
385 B
YAML
18 lines
385 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: Install virtualenv using pip
|
|
run: pip install virtualenv
|
|
- name: Run ansible-test
|
|
run: bash tests/sanity/sanity.sh
|