diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..d4993aa --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,38 @@ +name: Test Suite + +on: + push: + pull_request: + +jobs: + php_tests: + if: "!contains(github.event.head_commit.message, 'changelog')" + + runs-on: ${{ matrix.os }} + + strategy: + matrix: + php: [8.4, 8.3] + laravel: [12.*] + statamic: [^6.0] + os: [ubuntu-latest] + + name: ${{ matrix.php }} - ${{ matrix.statamic }} - ${{ matrix.laravel }} + + steps: + - name: Checkout code + uses: actions/checkout@v1 + + - 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 + + - name: Install dependencies + run: | + composer require "laravel/framework:${{ matrix.laravel }}" "statamic/cms:${{ matrix.statamic }}" --no-interaction --no-update + composer install --no-interaction + + - name: Run Pest + run: vendor/bin/pest