Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Bump actions/setup-python from 4 to 5 #12

Bump actions/setup-python from 4 to 5

Bump actions/setup-python from 4 to 5 #12

Workflow file for this run

---
name: ansible
on:
pull_request:
push:
branches:
- main
- wip/next
jobs:
ansible-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ansible/ansible-lint-action@v6
molecule:
needs:
- ansible-lint
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
distro:
- archlinux
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- run: pip3 install ansible molecule molecule-plugins[docker] docker
- run: molecule test -p ${{ matrix.distro }}
env:
PY_COLORS: '1'
...