Skip to content

Commit e90eae3

Browse files
committed
workflows: Run yamllint against the makefile.yml file
makefile.yml 1:1 warning missing document start "---" (document-start) 3:1 warning truthy value should be one of [false, true] (truthy) 3:6 error too many spaces inside brackets (brackets) 3:44 error too many spaces inside brackets (brackets) 20:5 error wrong indentation: expected 6 but found 4 (indentation) 25:81 error line too long (102 > 80 characters) (line-length) Signed-off-by: Chuck Lever <[email protected]>
1 parent 6d296ef commit e90eae3

File tree

1 file changed

+27
-21
lines changed

1 file changed

+27
-21
lines changed

.github/workflows/makefile.yml

Lines changed: 27 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
---
12
name: Multi-platform CI
23

3-
on: [ push, pull_request, workflow_dispatch ]
4+
on: [push, pull_request, workflow_dispatch]
45

56
jobs:
67
build:
@@ -17,23 +18,28 @@ jobs:
1718
- linux/arm64
1819

1920
steps:
20-
- uses: actions/checkout@v4
21-
22-
- name: Install dependencies
23-
run: |
24-
sudo apt-get update
25-
sudo apt-get -y install gnutls-dev libkeyutils-dev libnl-3-dev libnl-genl-3-dev libglib2.0-dev
26-
27-
- name: Configure
28-
run: |
29-
./autogen.sh
30-
./configure --with-systemd
31-
32-
- name: Build
33-
run: make
34-
35-
- name: Check
36-
run: make check
37-
38-
- name: Distcheck
39-
run: make distcheck
21+
- uses: actions/checkout@v4
22+
23+
- name: Install dependencies
24+
run: |
25+
sudo apt-get update
26+
sudo apt-get -y install \
27+
gnutls-dev \
28+
libkeyutils-dev \
29+
libnl-3-dev \
30+
libnl-genl-3-dev \
31+
libglib2.0-dev
32+
33+
- name: Configure
34+
run: |
35+
./autogen.sh
36+
./configure --with-systemd
37+
38+
- name: Build
39+
run: make
40+
41+
- name: Check
42+
run: make check
43+
44+
- name: Distcheck
45+
run: make distcheck

0 commit comments

Comments
 (0)