Verzeichnisstruktur phpBB-3.3.16
- Veröffentlicht
- 27.04.2026
So funktioniert es
|
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
ci.yml
01 name: CI
02
03 on:
04 push:
05 branches: [ main, master, 1.x ]
06 pull_request:
07 branches: [ main, master, 1.x ]
08
09 jobs:
10 build:
11 runs-on: ubuntu-latest
12
13 strategy:
14 matrix:
15 php-version:
16 - '7.2'
17 - '7.3'
18 - '7.4'
19 - '8.0'
20 - '8.1'
21 - '8.2'
22 - '8.3'
23 - '8.4'
24 - '8.5'
25 fail-fast: false
26
27 name: PHP ${{ matrix.php-version }}
28
29 steps:
30 - name: Checkout code
31 uses: actions/checkout@v6
32 with:
33 fetch-depth: 10
34
35 # Setup PHP environment
36 - name: Setup PHP
37 uses: shivammathur/setup-php@v2
38 with:
39 php-version: ${{ matrix.php-version }}
40 extensions: mbstring, pdo, sqlite, pdo_sqlite
41
42 - name: Install dependencies
43 run: composer install --prefer-dist --no-interaction --no-progress
44
45 - name: Run tests
46 run: .github/run-phpunit.sh ${{ matrix.php-version }}
47
48 - name: Upload Scrutinizer coverage
49 if: ${{ hashFiles('coverage.clover') != '' }}
50 uses: sudo-bot/action-scrutinizer@latest
51 with:
52 cli-args: "--format=php-clover coverage.clover --revision=${{ github.event.pull_request.head.sha || github.sha }}"
53