-
Notifications
You must be signed in to change notification settings - Fork 88
33 lines (31 loc) · 1.04 KB
/
tests_basic.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
name: Basic tests
on: [push, pull_request]
jobs:
test:
name: perlcritic, perltidy, shellcheck, doc
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: install prerequisites
run: sudo ./bin/admin/packages-check.sh -i -d
env:
DEBIAN_FRONTEND: noninteractive
- name: shellcheck
run: bin/dev/shell-check.sh
- name: perl critic
run: bin/dev/perl-critic.sh
- name: perl tidy
run: bin/dev/perl-tidy.sh test
- name: autogenerate documentation
run: make -C doc/sphinx autogenerated
- name: verify git diff
run: |
if [ "$(git diff --numstat | wc -l)" != 0 ]; then
git diff
echo
echo "Some autogenerated documentation files are not up to date." >&2
echo "Please run 'make -C doc/sphinx autogenerated' and commit the result." >&2
exit 1
fi