Skip to content

ci: use make for linting #257

ci: use make for linting

ci: use make for linting #257

Workflow file for this run

name: 'Lint'
on:
pull_request: { }
push: { }
jobs:
lint:
name: 'Lint'
runs-on: ubuntu-latest
container:
image: python:3.11-alpine
steps:
- name: 'Checkout'
uses: actions/checkout@v3
- name: Setup ansible
run: |
apk add --update --no-cache --virtual build_dependencies gcc musl-dev libffi-dev openssl-dev rust cargo
pip install --no-cache-dir ansible-core
ansible-galaxy collection install community.general
make init-venv
- name: Lint
run: |
make lint