build(deps): bump ansible-core from 2.13.13 to 2.15.8 #766
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: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
test: | |
name: CI on python${{ matrix.python }} via ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-20.04 | |
python: 3.8 | |
- os: ubuntu-20.04 | |
python: 3.9 | |
- os: ubuntu-22.04 | |
python: "3.10" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install tox | |
run: pip install tox | |
- name: Run flake8 | |
run: tox -e flake8 | |
- name: Run unit tests | |
run: tox -e py3 | |
- name: Run docs build | |
run: tox -e docs |