-
-
Notifications
You must be signed in to change notification settings - Fork 490
40 lines (32 loc) · 893 Bytes
/
ci.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
37
38
39
40
---
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out the codebase
uses: actions/checkout@v4
- name: Set up Python 3
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install test dependencies
run: pip3 install ansible yamllint==1.30.0 ansible-lint==6.14.6
- name: Ansible-lint
run: ansible-lint nas.yml
- name: Lint yaml files
run: yamllint .
- name: Lint docs
uses: articulate/actions-markdownlint@v1
with:
version: 0.32.2