Skip to content

Commit

Permalink
Added Windows test execution
Browse files Browse the repository at this point in the history
  • Loading branch information
asgrim committed Apr 24, 2024
1 parent 32cc5b6 commit 6c2188a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,25 @@ on:
jobs:
ci:
uses: laminas/workflow-continuous-integration/.github/workflows/[email protected]

windows-tests:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system:
- windows-latest
php-versions:
- '8.1'
- '8.2'
- '8.3'
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- uses: ramsey/composer-install@v3
- name: Run PHPUnit
run: vendor/bin/phpunit

0 comments on commit 6c2188a

Please sign in to comment.