-
Notifications
You must be signed in to change notification settings - Fork 9
72 lines (68 loc) · 2.1 KB
/
main.yaml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# yamllint disable-line rule:line-length
# SPDX-FileCopyrightText: 2023 - 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
#
# SPDX-License-Identifier: GPL-3.0-or-later
---
name: Lint
# yamllint disable-line rule:truthy
on:
# yamllint disable-line rule:empty-values
push:
branches:
- main
pull_request:
branches:
- main
types:
- opened
- reopened
- synchronize
concurrency:
group: ci-${{ github.ref }}-1
cancel-in-progress: true
jobs:
lint:
strategy:
fail-fast: false
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: recursive
- uses: actions/setup-python@v5
- name: Update package list
run: sudo apt-get update -y
- name: Install OS packages
# yamllint disable-line rule:line-length
run: sudo apt-get install -y $(cat dependencies/debian.txt)
- name: Remove externally managed python environment flag
# yamllint disable-line rule:line-length
run: sudo dpkg-divert --rename --add /usr/lib/$(py3versions -d)/EXTERNALLY-MANAGED
- name: Install pip packages
run: pip3 install $(cat dependencies/pip.txt)
- uses: pre-commit/action@v3.0.1
env:
SPEC_VENDOR: Ben Grande
SPEC_PACKAGER: Ben Grande <ben.grande.b@gmail.com>
- uses: editorconfig-checker/action-editorconfig-checker@main
- name: Run Editorconfig Checker
run: |
editorconfig-checker
editorconfig-checker salt/dotfiles
- name: Lint commit messages
run: |
if test "${{ github.event_name}}" = "pull_request"
then
base="${{ github.event.pull_request.base.sha }}"
head="${{ github.event.pull_request.head.sha }}"
else
base="${{ github.event.before }}"
head="${{ github.event.after }}"
fi
if test "${base}" = "${head}" || test -z "${base}"
then
gitlint --debug --commit "${head}"
else
gitlint --debug --commits "${base}..${head}"
fi