build #356
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ "master" ] | |
push: | |
branches: [ "master" ] | |
schedule: | |
- cron: '0 16 * * 0' # sunday 16:00 | |
# Actions | |
# shivammathur/setup-php@v2 - https://github.com/marketplace/actions/setup-php-action | |
# nosborn/[email protected] https://github.com/marketplace/actions/markdownlint-cli | |
# Tiryoh/actions-mkdocs@v0 https://github.com/marketplace/actions/mkdocs-action | |
jobs: | |
phpcs: | |
name: Code style (phpcs) | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 # see https://github.com/marketplace/actions/setup-php-action | |
with: | |
php-version: '8.3' | |
coverage: none | |
tools: cs2pr, phpcs | |
env: | |
fail-fast: true | |
- name: Code style (phpcs) | |
run: phpcs -q --report=checkstyle | cs2pr | |
php-cs-fixer: | |
name: Code style (php-cs-fixer) | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 # see https://github.com/marketplace/actions/setup-php-action | |
with: | |
php-version: '8.3' | |
coverage: none | |
tools: cs2pr, php-cs-fixer | |
env: | |
fail-fast: true | |
- name: Code style (php-cs-fixer) | |
run: php-cs-fixer fix --dry-run --format=checkstyle | cs2pr | |
markdownlint: | |
name: Markdown style (markdownlint) | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Code style (markdownlint-cli) | |
uses: nosborn/[email protected] | |
with: | |
files: '*.md docs/' | |
config_file: '.markdownlint.json' | |
mkdocs: | |
name: Test docs building | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run mkdocs | |
uses: Tiryoh/actions-mkdocs@v0 | |
with: | |
mkdocs_version: 'latest' | |
configfile: 'mkdocs.yml' | |
phpstan: | |
name: Code analysis (phpstan) | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
extensions: soap, intl, xsl, fileinfo, bcmath | |
coverage: none | |
tools: composer:v2, phpstan | |
env: | |
fail-fast: true | |
- name: Get composer cache directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install project dependencies | |
run: | | |
composer remove squizlabs/php_codesniffer friendsofphp/php-cs-fixer phpstan/phpstan --dev --no-interaction --no-progress --no-update | |
composer upgrade --no-interaction --no-progress --prefer-dist | |
- name: PHPStan | |
run: phpstan analyse --no-progress --verbose | |
tests-linux: | |
name: Test PHP ${{ matrix.php-version }} on Linux | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-version: [ '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # required for scrutinizer | |
- name: Install libsaxonb-java on linux | |
run: | | |
sudo apt-get update -y -qq | |
sudo apt-get install -y -qq default-jre libsaxonb-java | |
- name: Install dependencies running on nektos/act | |
if: github.actor == 'nektos/act' | |
run: sudo apt-get install -y -qq zstd | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: soap, intl, xsl, fileinfo, bcmath | |
coverage: xdebug | |
tools: composer:v2 | |
env: | |
fail-fast: true | |
- name: Get composer cache directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install SAT XML resources | |
shell: bash | |
run: | | |
git clone --depth 1 https://github.com/phpcfdi/resources-sat-xml resources-sat-xml-cloned | |
mv resources-sat-xml-cloned/resources build/resources | |
rm -r -f resources-sat-xml-cloned | |
- name: Remove genkgo/xsl on PHP 8.3 | |
if: matrix.php-version == '8.3' | |
run: | | |
composer remove genkgo/xsl --dev --no-interaction --no-progress --no-update | |
- name: Install project dependencies | |
run: | | |
composer remove squizlabs/php_codesniffer friendsofphp/php-cs-fixer phpstan/phpstan --dev --no-interaction --no-progress --no-update | |
composer upgrade --no-interaction --no-progress --prefer-dist | |
- name: Tests (phpunit) on linux | |
run: vendor/bin/phpunit --testdox --verbose --coverage-clover=build/coverage-clover.xml | |
- name: Upload code coverage to scrutinizer | |
run: | | |
mkdir -p build/scrutinizer | |
composer require scrutinizer/ocular:dev-master --working-dir=build/scrutinizer --no-progress | |
php build/scrutinizer/vendor/bin/ocular code-coverage:upload -vvv --no-interaction --format=php-clover build/coverage-clover.xml | |
tests-windows: | |
name: Tests PHP ${{ matrix.php-version }} on Windows | |
runs-on: "windows-latest" | |
strategy: | |
matrix: | |
php-version: [ '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install saxonhe | |
run: choco install --ignore-checksums --no-progress --yes saxonhe | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: soap, intl, xsl, fileinfo, bcmath | |
coverage: none | |
tools: composer:v2 | |
env: | |
fail-fast: true | |
- name: Get composer cache directory | |
id: composer-cache | |
shell: bash | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install SAT XML resources | |
shell: bash | |
run: | | |
git clone --depth 1 https://github.com/phpcfdi/resources-sat-xml resources-sat-xml-cloned | |
mv resources-sat-xml-cloned/resources build/resources | |
rm -r -f resources-sat-xml-cloned | |
- name: Remove genkgo/xsl on PHP 8.3 | |
if: matrix.php-version == '8.3' | |
run: | | |
composer remove genkgo/xsl --dev --no-interaction --no-progress --no-update | |
- name: Install project dependencies | |
run: | | |
composer remove squizlabs/php_codesniffer friendsofphp/php-cs-fixer phpstan/phpstan --dev --no-interaction --no-progress --no-update | |
composer upgrade --no-interaction --no-progress --prefer-dist | |
- name: Tests (phpunit) | |
run: vendor/bin/phpunit --testdox --verbose | |
env: | |
saxonb-path: 'C:\ProgramData\chocolatey\bin\SaxonHE\bin\Transform.exe' |