check cacert realpath
#8
This file contains hidden or 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
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions | |
# https://github.com/sebastianbergmann/phpunit/blob/main/.github/workflows/ci.yaml | |
# https://github.com/actions/checkout | |
# https://github.com/actions/upload-artifact | |
# https://github.com/shivammathur/setup-php | |
# https://github.com/ramsey/composer-install | |
# https://github.com/codecov/codecov-action | |
# https://github.com/codacy/codacy-coverage-reporter-action | |
# https://github.com/JamesIves/github-pages-deploy-action | |
# https://github.com/stefanzweifel/git-auto-commit-action | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
name: "Continuous Integration" | |
env: | |
PHP_EXTENSIONS: curl, fileinfo, intl, json, mbstring, simplexml, sodium, zlib | |
PHP_INI_VALUES: memory_limit=-1, error_reporting=-1, display_errors=On | |
jobs: | |
static-code-analysis: | |
name: "Static Code Analysis" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
php-version: | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- name: "Install PHP" | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: ${{ env.PHP_EXTENSIONS }} | |
ini-values: ${{ env.PHP_INI_VALUES }} | |
coverage: none | |
- name: "Install dependencies with composer" | |
uses: ramsey/composer-install@v3 | |
- name: "Run PHPStan" | |
run: php vendor/bin/phpstan | |
- name: "Run PHP_CodeSniffer" | |
run: php vendor/bin/phpcs | |
tests: | |
name: "Unit Tests" | |
needs: static-code-analysis | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
php-version: | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
- "8.4" | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@v4 | |
- name: "Install PHP with extensions" | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: ${{ env.PHP_EXTENSIONS }} | |
ini-values: ${{ env.PHP_INI_VALUES }} | |
coverage: pcov | |
- name: "Fetch cacert.pem from curl.se" | |
run: curl -o ./tests/cacert.pem https://curl.se/ca/cacert.pem | |
- name: "Install dependencies with composer" | |
uses: ramsey/composer-install@v3 | |
- name: "Run tests with phpunit" | |
run: php vendor/bin/phpunit --colors=always --configuration=phpunit.xml.dist |