chore: adder 0.25.1 #158
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Ansible Tests | |
on: | |
pull_request: | |
jobs: | |
build: | |
name: Ansible Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Perform sanity testing with ansible-test | |
uses: ansible-community/ansible-test-gh-action@release/v1 | |
with: | |
ansible-core-version: stable-2.13 | |
testing-type: sanity | |
# TODO: uncomment when we have integration tests | |
#- name: Perform integration testing with ansible-test | |
# uses: ansible-community/ansible-test-gh-action@release/v1 | |
# with: | |
# ansible-core-version: stable-2.13 | |
# pre-test-cmd: echo This runs before the ansible-test invocation | |
# python-version: 3.9 | |
# target-python-version: 3.9 | |
# testing-type: integration | |
# #test-deps: ansible.netcommon | |
# TODO: uncomment when we have unit tests | |
#- name: Perform unit testing with ansible-test | |
# uses: ansible-community/ansible-test-gh-action@release/v1 | |
# with: | |
# ansible-core-version: stable-2.13 | |
# pre-test-cmd: echo This runs before the ansible-test invocation | |
# python-version: 3.9 | |
# target-python-version: 3.9 | |
# testing-type: units | |
# #test-deps: >- | |
# # ansible.netcommon | |
# # ansible.utils |