Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

Testing the collection against Quay v3.10.1 #77

Testing the collection against Quay v3.10.1

Testing the collection against Quay v3.10.1 #77

Workflow file for this run

---
name: Sanity Test
on:
push:
branches:
- main
pull_request:
jobs:
integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
path: ansible_collections/herve4m/quay
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install required packages
run: pip install -Iv ansible
- name: Run sanity tests
run: >
ANSIBLE_TEST_PREFER_PODMAN=1 ansible-test sanity
--docker default -v --color
working-directory: ./ansible_collections/herve4m/quay
...