Support kubernetes_ids for source and destination rules in digital_ocean_firewall
#1896
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: sanity | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
workflow_dispatch: | |
jobs: | |
sanity: | |
timeout-minutes: 30 | |
name: Sanity (Ⓐ$${{ matrix.versions.ansible }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
versions: | |
- ansible: stable-2.14 | |
python: "3.9" | |
- ansible: stable-2.15 | |
python: "3.9" | |
- ansible: stable-2.16 | |
python: "3.10" | |
- ansible: devel | |
python: "3.10" | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Perform testing | |
uses: ansible-community/ansible-test-gh-action@release/v1 | |
with: | |
ansible-core-version: ${{ matrix.versions.ansible }} | |
origin-python-version: ${{ matrix.versions.python }} | |
target-python-version: ${{ matrix.versions.python }} | |
testing-type: sanity |