diff --git a/.github/workflows/test-on-windows.yaml b/.github/workflows/test-on-windows.yaml deleted file mode 100644 index 4b14f4e..0000000 --- a/.github/workflows/test-on-windows.yaml +++ /dev/null @@ -1,50 +0,0 @@ -name: tests-on-windows - -on: - push: - pull_request: - workflow_dispatch: - -jobs: - tests: - runs-on: ${{ matrix.os }} - continue-on-error: ${{ matrix.experimental }} - strategy: - matrix: - os: - - "windows-latest" - php: - - '8.0' - - 8.1 - - 8.2 - dependencies: - - "highest" - - "lowest" - experimental: - - false - - name: PHP${{ matrix.php }}-${{ matrix.os }} (${{ matrix.dependencies }}) - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php }} - extensions: dom, curl, libxml, mbstring, zip, pcntl, sqlite3, pdo_sqlite, bcmath, fileinfo - coverage: none - - - name: Install dependencies - uses: "ramsey/composer-install@v2" - with: - dependency-versions: "${{ matrix.dependencies }}" - composer-options: "--prefer-dist --no-cache" - - - name: Installed dependencies - run: composer show -D - - - name: Execute tests - run: vendor/bin/phpunit --testdox - diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 16cc072..034c9d7 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -23,7 +23,7 @@ jobs: experimental: - false - name: PHP${{ matrix.php }}-${{ matrix.os }} with Laravel 9 (${{ matrix.dependencies }}) + name: PHP${{ matrix.php }} on ${{ matrix.os }} (${{ matrix.dependencies }}) steps: - name: Checkout code