fix ci, remove support for outdated distros #32
Workflow file for this run
This file contains 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: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: "CI" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
job: | |
- molecule-ansible8 | |
- molecule-ansible9 | |
- lint | |
steps: | |
- name: Check out codebase | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.12" | |
- name: Set up pip | |
run: pip3 install --upgrade pip | |
- name: Install tox | |
run: sudo apt update && apt -y install tox | |
- name: Run Tox | |
run: tox -e ${{ matrix.job }} |