Test docs deploy #16
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: Run Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test-docs-build: | |
name: Test Docs Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: dorny/paths-filter@v2 | |
id: changes | |
with: | |
filters: | | |
docs: | |
- 'docs/**' | |
- if: steps.changes.outputs.docs == 'true' | |
uses: actions/setup-node@v3 | |
with: | |
cache-dependency-path: ./docs/yarn.lock | |
node-version: 18 | |
cache: yarn | |
- name: Install dependencies | |
if: steps.changes.outputs.docs == 'true' | |
working-directory: ./docs | |
run: yarn install --frozen-lockfile | |
- name: Build website | |
if: steps.changes.outputs.docs == 'true' | |
working-directory: ./docs | |
run: yarn build | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest] | |
php: [8.1, 8.2] | |
stability: [prefer-lowest, prefer-stable] | |
include: | |
- testbench: 8.* | |
name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo | |
coverage: none | |
- name: Setup problem matchers | |
run: | | |
echo "::add-matcher::${{ runner.tool_cache }}/php.json" | |
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
- name: Install dependencies | |
run: | | |
composer require "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update | |
composer update --${{ matrix.stability }} --prefer-dist --no-interaction | |
- name: List Installed Dependencies | |
run: composer show -D | |
- name: Execute tests | |
run: vendor/bin/pest --ci |