Skip to content

ci: upgrade python env from 3.10 to 3.12 #88

ci: upgrade python env from 3.10 to 3.12

ci: upgrade python env from 3.10 to 3.12 #88

Workflow file for this run

name: test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
name: Test on python ${{ matrix.python-version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.12']
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Use python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# Use separate run commands so command status handled correctly on Windows
- name: install ansible
run: pip install ansible
- name: run ansible-playbook check
run: cd ansible && ansible-playbook setup.yml --check