-
Notifications
You must be signed in to change notification settings - Fork 115
46 lines (37 loc) · 1.07 KB
/
autoloader.yml
File metadata and controls
46 lines (37 loc) · 1.07 KB
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
# SPDX-FileCopyrightText: 2022-2024 Nextcloud GmbH and Nextcloud contributors
# SPDX-License-Identifier: AGPL-3.0-or-later
name: Autoload checker
on:
pull_request:
push:
branches:
- main
- master
- stable*
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
name: autoloader
steps:
- name: Checkout
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
persist-credentials: false
- name: Set up php
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
with:
php-version: 8.3
tools: composer
- name: Set up PHPUnit
working-directory: composer
run: composer install && composer dump-autoload
- name: Check difference to committed files
run: |
bash -c "[[ ! \"`git status --porcelain -- . ':!composer/composer/installed.php'`\" ]] || exit 1"
- name: Show changes on failure
if: failure()
run: |
git status
git --no-pager diff