Skip to content

Merge pull request #5 from karlivory/fix-cleanup-ci #16

Merge pull request #5 from karlivory/fix-cleanup-ci

Merge pull request #5 from karlivory/fix-cleanup-ci #16

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up directory structure
run: |
mkdir -p ansible_collections/karlivory/zk
mv ./* ansible_collections/karlivory/zk/ || true
mv ./.* ansible_collections/karlivory/zk/ || true
- name: Run unit tests
run: |
cd ./ansible_collections/karlivory/zk
python -m pip install --upgrade pip
pip install -r ./test-requirements.txt
ansible-test units --requirements
ansible-test integration