-
-
Notifications
You must be signed in to change notification settings - Fork 103
36 lines (35 loc) · 948 Bytes
/
Copy pathpackage_lint.yml
File metadata and controls
36 lines (35 loc) · 948 Bytes
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
# SPDX-FileCopyrightText: 2024 AerynOS Developers
# SPDX-License-Identifier: MPL-2.0
---
name: Package Lint
on:
pull_request:
paths-ignore:
- 'tools/**'
- 'releases/**'
- 'typos/**'
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
Recipes:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v7
with:
fetch-depth: 0
- run: |
sudo apt-get update
sudo apt-get install python3-ruamel.yaml
tools/CI/package_checks.py --base=origin/${{ github.event.pull_request.base.ref }}
Repository:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Verify REUSE compliance
uses: fsfe/reuse-action@v6.0.0
continue-on-error: true