Add Access/ToR Switch Pairing Module (DCNE-791) #64
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
| --- | |
| # This workflow calls the latest version of the | |
| # reusable workflow. | |
| # You can copy this file into your respository if | |
| # you want to check against pinned versions of | |
| # Automation Hub tests. | |
| name: Run collection certification checks | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 6 * * *' | |
| concurrency: | |
| group: cert-ver-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| # Files that are not related to the core functionality | |
| # of your collection can cause Ansible Lint to fail. | |
| # If this happens, add an .ansible-lint file that includes | |
| # those files and directories to the root of your | |
| # repository; for example: | |
| # https://github.com/ansible-collections/partner-certification-checker/blob/main/.ansible-lint | |
| # If there are sanity test failures that cannot be fixed and are allowed to ignore | |
| # https://docs.ansible.com/projects/lint/rules/sanity/, create a sanity ignore file | |
| # https://docs.ansible.com/projects/ansible/devel/dev_guide/testing/sanity/ignores.html#ignore-file-location | |
| # for each affected version of ansible-core (for example, `tests/sanity/ignore-2.18.txt`) and add corresponding entries. | |
| jobs: | |
| call: | |
| uses: ansible-collections/partner-certification-checker/.github/workflows/certification-reusable.yml@2f6d9300ebe9190da3120a740c3a4d5ca2f0f02e # v1.0.0 | |
| with: | |
| ansible-core-version: '2.18.0' | |
| python-versions: '["3.11", "3.12", "3.13"]' | |
| collection-root: '.' |