Skip to content

chore(deps): bump fzf to 0.74.1 and starship to 1.26.0 #8

chore(deps): bump fzf to 0.74.1 and starship to 1.26.0

chore(deps): bump fzf to 0.74.1 and starship to 1.26.0 #8

Workflow file for this run

---
name: lint
"on":
push:
branches:
- master
pull_request:
workflow_dispatch:
jobs:
ansible-lint:
name: ansible-lint
runs-on: ubuntu-latest
steps:
- name: Check out the codebase
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install ansible-lint
run: |
python -m pip install --upgrade pip
pip install ansible-lint ansible-core
- name: Run ansible-lint
run: ansible-lint
env:
PY_COLORS: "1"
ANSIBLE_FORCE_COLOR: "1"