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 b5987c2
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,26 @@ on:
jobs:
ci:
uses: laminas/workflow-continuous-integration/.github/workflows/continuous-integration.yml@1.x

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 }}
extensions: intl
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 b5987c2

Please sign in to comment.