Skip to content

feat: check mode compatibility #388

feat: check mode compatibility

feat: check mode compatibility #388

Workflow file for this run

---
name: CI
on:
pull_request:
branches:
- main
env:
# https://www.jeffgeerling.com/blog/2020/getting-colorized-output-molecule-and-ansible-on-github-actions-ci
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
jobs:
lint:
name: "Lint Checks"
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install dependency manager
run: pipx install poetry
- name: Set up Python 3.x
id: setup-python
uses: actions/[email protected]
with:
python-version: "3.11"
cache: 'poetry'
- name: Install packages
run: poetry install --no-interaction
- name: Lint
run: make lint