Skip to content

Commit 107f831

Browse files
committed
ci: add sqlite to extensions
1 parent bc591a6 commit 107f831

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ permissions:
1515
jobs:
1616
tests:
1717
runs-on: ${{ matrix.os }}
18+
defaults:
19+
run:
20+
shell: bash
1821

1922
strategy:
2023
fail-fast: true
@@ -33,7 +36,7 @@ jobs:
3336
uses: shivammathur/setup-php@v2
3437
with:
3538
php-version: ${{ matrix.php }}
36-
extensions: dom, curl, libxml, mbstring, zip, fileinfo
39+
extensions: dom, curl, libxml, mbstring, zip, fileinfo, sqlite, pdo_sqlite
3740
ini-values: error_reporting=E_ALL
3841
tools: composer:v2.8
3942
coverage: none
@@ -46,14 +49,16 @@ jobs:
4649
ssh-keyscan github.com >> ~/.ssh/known_hosts
4750
4851
- name: Install dependencies
49-
shell: bash
5052
run: |
5153
composer update --prefer-dist --no-interaction --no-progress --with='illuminate/contracts:^${{ matrix.laravel }}'
5254
5355
- name: Execute tests
5456
run: vendor/bin/pest
5557
test-l10:
5658
runs-on: ${{ matrix.os }}
59+
defaults:
60+
run:
61+
shell: bash
5762

5863
strategy:
5964
fail-fast: true

0 commit comments

Comments
 (0)