Merge pull request #3133 from briannesbitt/job/update-documentation #2883
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: Tests | |
on: | |
push: | |
branches: [ 'gh-pages', 'gh-pages/**' ] | |
pull_request: | |
branches: [ 'gh-pages', 'gh-pages/**' ] | |
jobs: | |
ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
extensions: json | |
tools: composer:v2 | |
coverage: none | |
- name: Install dependencies | |
run: composer update --prefer-dist --no-interaction --no-suggest | |
- name: Run test suite | |
run: php tools/check.php |