Skip to content

CI

CI #229

Workflow file for this run

---
name: CI
'on':
pull_request:
push:
branches:
- main
schedule:
- cron: "0 5 * * 4"
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pipenv'
- name: Install dependencies with pipenv
run: |
pip install pipenv
pipenv install --deploy --dev
- run: pipenv run yamllint .
- run: pipenv run ansible-lint