Skip to content
This repository has been archived by the owner on Jul 29, 2023. It is now read-only.

Add deprecation notice (#37) #221

Add deprecation notice (#37)

Add deprecation notice (#37) #221

Workflow file for this run

---
name: Ansible Test
on:
pull_request:
branches: [main]
push:
branches: [main]
schedule:
- cron: 0 12 */2 * *
env:
CHECKOUT_PATH: ansible_collections/srv6d/gitlab
jobs:
ansible-test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
path: ${{ env.CHECKOUT_PATH }}
- uses: actions/setup-python@v4
with:
python-version: 3.11
- name: install collection pip requirements
run: pip3 install -r ${{ env.CHECKOUT_PATH }}/requirements.txt
- name: run ansible sanity tests
run: ansible-test sanity
working-directory: ${{ env.CHECKOUT_PATH }}