Skip to content

Commit 4612152

Browse files
authored
Add publiccode.yml validation CI (#1384)
Signed-off-by: Fabio Bonelli <fb@fabiobonelli.it>
1 parent 1bd7e60 commit 4612152

1 file changed

Lines changed: 43 additions & 0 deletions

File tree

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License
17+
name: Validate publiccode.yml
18+
19+
on:
20+
push:
21+
paths:
22+
- "publiccode.yml"
23+
- ".github/workflows/publiccodeyml-check.yml"
24+
pull_request:
25+
paths:
26+
- "publiccode.yml"
27+
- ".github/workflows/publiccodeyml-check.yml"
28+
29+
permissions: {}
30+
31+
jobs:
32+
validate:
33+
runs-on: ubuntu-latest
34+
permissions:
35+
contents: read
36+
name: publiccode.yml validation
37+
steps:
38+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
39+
40+
- uses: italia/publiccode-parser-action@21086c73ec0563e14c6748787efa1b34b025ad8c # v1.5.1
41+
with:
42+
publiccode: "publiccode.yml"
43+
no-network: true

0 commit comments

Comments
 (0)