Skip to content

Commit 8de6fad

Browse files
committed
add tests on windows
1 parent 85f42d6 commit 8de6fad

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

.github/workflows/ci.yml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,26 @@ jobs:
5252
env:
5353
TURSO_URL: "http://localhost:8080"
5454
TURSO_AUTH_TOKEN: ""
55-
run: vendor/bin/phpunit tests/
55+
run: vendor/bin/phpunit tests/
56+
57+
test:
58+
name: Tests on windows-latest
59+
runs-on: windows-latest
60+
steps:
61+
62+
- uses: actions/checkout@v4
63+
64+
- name: Setup PHP
65+
uses: shivammathur/setup-php@v2
66+
with:
67+
php-version: '8.3'
68+
coverage: none
69+
70+
- name: Install Composer Dependencies
71+
run: composer install --prefer-dist --no-progress
72+
73+
- name: Run Tests
74+
env:
75+
TURSO_URL: "http://localhost:8080"
76+
TURSO_AUTH_TOKEN: ""
77+
run: vendor/bin/phpunit tests/

0 commit comments

Comments
 (0)