forked from ansible-collections/community.grafana
-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (30 loc) · 833 Bytes
/
lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Lint
on:
push:
branches:
- main
pull_request:
jobs:
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v41
with:
files: "**/*.py"
- if: ${{ steps.changed-files.outputs.all_changed_files != '' }}
uses: psf/black@stable
with:
src: ${{ steps.changed-files.outputs.all_changed_files }}
- if: ${{ steps.changed-files.outputs.all_changed_files != '' }}
uses: chartboost/ruff-action@v1
with:
src: ${{ steps.changed-files.outputs.all_changed_files }}
ansible:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run ansible-lint
uses: ansible/ansible-lint@main