Skip to content

Commit

Permalink
Format build.phpall.ant
Browse files Browse the repository at this point in the history
  • Loading branch information
HorstOeko committed Sep 2, 2024
1 parent e434b6b commit 448a92d
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/build.phpall.ant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ name: CI (Matrix Build)
on:
push:
tags-ignore:
- '**'
- "**"
branches:
- '**'
- "**"
paths-ignore:
- '**.md'
- '.github/**'
- 'examples/**'
- "**.md"
- ".github/**"
- "examples/**"
pull_request:
types:
- opened
branches:
- 'master'
- "master"
workflow_dispatch:

env:
VALIDATORURL: https://github.com/itplr-kosit/validator/releases/download/v1.5.0/validator-1.5.0-distribution.zip
VALIDATORSCENARIOURL: https://github.com/itplr-kosit/validator-configuration-xrechnung/releases/download/release-2023-07-31/validator-configuration-xrechnung_3.0.0_2023-07-31.zip
Expand All @@ -32,8 +32,8 @@ jobs:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: ['ubuntu-22.04','ubuntu-24.04']
phpversion: ['7.3','7.4','8.0','8.1','8.2','8.3']
operating-system: ["ubuntu-22.04", "ubuntu-24.04"]
phpversion: ["7.3", "7.4", "8.0", "8.1", "8.2", "8.3"]

steps:
- name: Checkout Sources
Expand All @@ -42,15 +42,15 @@ jobs:
- name: Setup PHP with PECL extension
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.phpversion }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, bcmath, intl, gd, exif, iconv, imagick, json, xdebug
coverage: xdebug
php-version: ${{ matrix.phpversion }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, bcmath, intl, gd, exif, iconv, imagick, json, xdebug
coverage: xdebug

- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'adopt'
java-version: "11"
distribution: "adopt"

- name: Get Composer Cache Directory
id: composer-cache
Expand All @@ -74,7 +74,7 @@ jobs:
./vendor/bin/phpunit --stop-on-failure --configuration build/phpunit.xml
env:
XDEBUG_MODE: coverage

- name: Run Tests (Schematron)
run: |
set -e
Expand All @@ -96,4 +96,4 @@ jobs:
uses: EnricoMi/publish-unit-test-result-action@v2
if: github.event_name != 'pull_request'
with:
files: 'build/logs/junit.xml'
files: "build/logs/junit.xml"

0 comments on commit 448a92d

Please sign in to comment.