Skip to content

Instantly share code, notes, and snippets.

@peter279k
Created October 1, 2022 11:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peter279k/a4498cb2eeb5d151a1100de09793d621 to your computer and use it in GitHub Desktop.
Save peter279k/a4498cb2eeb5d151a1100de09793d621 to your computer and use it in GitHub Desktop.
name: build
on: [ push, pull_request ]
jobs:
run:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ ubuntu-latest ]
php-versions: [ '7.2', '7.3', '7.4' ]
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, pdo, pdo_mysql, intl, zip, xml, json, pdo_sqlite, openssl
coverage: none
- name: Install dependencies for PHP
run: composer update --prefer-dist --no-progress
- name: Run test suite
run: cp phpunit.dist.xml phpunit.xml && vendor/bin/phpunit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment