CI Workflow: Run in venv #72
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: CI | |
| 'on': | |
| pull_request: | |
| push: | |
| paths-ignore: | |
| - 'README.md' | |
| schedule: | |
| - cron: "16 3 * * 0" | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the codebase. | |
| uses: actions/checkout@v4 | |
| - name: Set up Python 3.x | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Install test dependencies. | |
| run: pip3 install yamllint | |
| - name: Run yamllint. | |
| run: yamllint . | |
| - name: Run ansible-lint | |
| uses: ansible/ansible-lint@main | |
| molecule: | |
| name: Molecule Tests | |
| needs: lint | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| distro: | |
| - debian11 | |
| - debian12 | |
| - debian13 | |
| - ubuntu2204 | |
| - ubuntu2404 | |
| ansible_core_version: | |
| - latest | |
| steps: | |
| - name: Check out the codebase. | |
| uses: actions/checkout@v4 | |
| - name: Set up Python 3. | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Install dependencies in venv and activate | |
| run: | | |
| python -m venv .venv | |
| source .venv/bin/activate | |
| python -m pip install install ansible molecule "molecule-plugins[docker]" | |
| echo "$VIRTUAL_ENV/bin" >> $GITHUB_PATH | |
| echo "VIRTUAL_ENV=$VIRTUAL_ENV" >> $GITHUB_ENV | |
| - name: Install ansible test dependencies | |
| run: ansible-galaxy install -r molecule/test_requirements.yml | |
| - name: Install role dependencies. | |
| run: ansible-galaxy install -r requirements.yml | |
| - name: Run Molecule tests. | |
| run: molecule test --all | |
| env: | |
| PY_COLORS: '1' | |
| ANSIBLE_FORCE_COLOR: '1' | |
| MOLECULE_IMAGE: "${{ matrix.distro }}" |