Bump ansible-core from 2.19.5 to 2.19.11rc1 #73
Workflow file for this run
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: Molecule Test | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches-ignore: | |
| - main | |
| workflow_dispatch: {} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref_name }} | |
| cancel-in-progress: true | |
| # Temporary variable until molecule-docker officially supports ansible 2.19+ | |
| env: | |
| ANSIBLE_ALLOW_BROKEN_CONDITIONALS: "True" | |
| jobs: | |
| molecule: | |
| runs-on: [ self-hosted ] | |
| timeout-minutes: 30 | |
| strategy: | |
| matrix: | |
| python-version: ["3.12"] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup Python | |
| uses: kishaningithub/setup-python-amazon-linux@v1 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| cache: "pipenv" | |
| - name: Install pipenv | |
| run: python -m pip install pipenv | |
| - name: Install dependencies | |
| run: pipenv install --dev | |
| - name: Lint the role | |
| run: pipenv run ansible-lint . --exclude=molecule/default/roles | |
| - name: Molecule test | |
| run: pipenv run molecule test |