Skip to content

Update actions/checkout digest to 692973e #489

Update actions/checkout digest to 692973e

Update actions/checkout digest to 692973e #489

Workflow file for this run

---
name: tests
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", '3.11']
ansible-version: ['6', '7']
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test with tox
run: tox
env:
ANSIBLE: ${{ matrix.ansible-version }}
PYTHON: ${{ matrix.python-version }}