Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
brpaz committed Sep 6, 2024
1 parent b9eabf8 commit a53a77f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,18 @@ name: CI
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
lint:
name: Lint
Expand All @@ -24,9 +30,7 @@ jobs:
python-version: 3.x # Use the desired Python version

- name: Install Dependencies
run: |
python3 -m venv .venv && source .venv/bin/activate
pip install -r requirements.txt
run: pip install -r requirements.txt

- name: Run Ansible Lint
run: ansible-lint playbooks/setup.yml roles
Expand Down

0 comments on commit a53a77f

Please sign in to comment.