Skip to content

Commit 8cf7e2f

Browse files
Merge pull request #220 from rnc/CI
Add yamllint for CI
2 parents df0df67 + 82f2b6b commit 8cf7e2f

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

Diff for: .github/workflows/ci.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Lint
2+
on:
3+
push:
4+
branches: [ main ]
5+
pull_request:
6+
branches: [ main ]
7+
jobs:
8+
build:
9+
name: yamllint
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: ⤵️ Check out code from GitHub
13+
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
14+
- name: 🚀 Run yamllint
15+
uses: frenck/action-yamllint@34b4bbcaeabedcfefad6adea8c5bbc42af0e2d47 # v1

Diff for: .yamllint

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
extends: default
3+
4+
rules:
5+
line-length: disable
6+
7+
ignore: |
8+
.github/

0 commit comments

Comments
 (0)