Document nmstate as experimental and require an override to use it #2800
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: Build and install collection | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
verify-collection: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
- name: Install ansible | |
run: pip install ansible | |
- name: Build ansible collection | |
run: ansible-galaxy collection build . | |
- name: Install collection | |
run: ansible-galaxy collection install --force osp-edpm-*.tar.gz |