We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f74d5ec commit 42c8fcbCopy full SHA for 42c8fcb
.github/workflows/lint.yml
@@ -0,0 +1,27 @@
1
+name: Linting libpng
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - libpng16
7
+ pull_request:
8
9
10
11
+jobs:
12
+ lint:
13
+ runs-on: ubuntu-latest
14
+ timeout-minutes: 5
15
+ steps:
16
+ - name: Set up the cache
17
+ uses: actions/cache@v4
18
+ with:
19
+ path: ~/.cache/pip
20
+ key: ${{ runner.os }}-pip-${{ hashFiles('**/pip.txt') }}
21
+ restore-keys: ${{ runner.os }}-pip-
22
+ - name: Install yamllint
23
+ run: pip install yamllint
24
+ - name: Check out the code
25
+ uses: actions/checkout@v4
26
+ - name: Run the linting script
27
+ run: bash ./ci/ci_lint.sh
.yamllint.yml
@@ -3,3 +3,5 @@ rules:
document-start: disable
document-end: disable
line-length: disable
+ truthy:
+ check-keys: false
0 commit comments