Add support for self-hosted Netbird instances and update README #113
This file contains hidden or 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: Run Ansible Sanity Tests | |
on: | |
push: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
path: ansible_collections/dominion_solutions/netbird | |
- name: Install dependencies | |
run: | | |
cd ansible_collections/dominion_solutions/netbird | |
pip install -r requirements.txt | |
- name: Run Ansible Sanity Tests | |
run: | | |
cd ansible_collections/dominion_solutions/netbird | |
ansible-test sanity |