-
-
Notifications
You must be signed in to change notification settings - Fork 75
45 lines (41 loc) · 1.14 KB
/
validate-package.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
41
42
43
44
45
---
name: Linting
on: [push, pull_request]
permissions: read-all
jobs:
validation:
name: Validate package
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Validate PKGBUILD
id: validate-pkgbuild
uses: Azd325/arch-pkgbuild-builder@master
with:
target: "pkgbuild"
builddir: "gitkraken-aur"
pkgname: "gitkraken"
- name: Validate SRCINFO
id: validate-srcinfo
uses: Azd325/arch-pkgbuild-builder@master
with:
target: "srcinfo"
builddir: "gitkraken-aur"
pkgname: "gitkraken"
linter:
name: Code Base
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
- name: Lint Code Base
uses: github/super-linter/slim@v7
env:
VALIDATE_ALL_CODEBASE: false
VALIDATE_HTML: false
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}