Skip to content

Commit 597de81

Browse files
committed
Merged ruff.yml + yamllint.yml into single lint-on-push-pr.yml
1 parent ec723e2 commit 597de81

File tree

3 files changed

+18
-25
lines changed

3 files changed

+18
-25
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Lint pushes/PRs
2+
on: [push, pull_request]
3+
4+
jobs:
5+
6+
ruff:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: chartboost/ruff-action@v1
11+
12+
yamllint:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
run: |
17+
pip install yamllint
18+
yamllint . -c .yamllint-config.yaml

.github/workflows/ruff.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.github/workflows/yamllint.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)