Skip to content

Commit 9b1571a

Browse files
committed
wip
1 parent b478e3d commit 9b1571a

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

.github/workflows/run-tests.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,16 @@ jobs:
3131
- name: Install SQLite 3 (3.32 is required and only included in Ubuntu 21.x)
3232
run: |
3333
sudo apt-get update
34-
sudo apt-get install sqlite3 libsqlite3-dev
34+
sudo apt-get install build-essential tar wget
35+
wget https://www.sqlite.org/2022/sqlite-autoconf-3400000.tar.gz
36+
tar xzf sqlite-autoconf-3400000.tar.gz
37+
cd sqlite-autoconf-3400000
38+
./configure --prefix=/usr
39+
make
40+
sudo make install
41+
sudo cp -f ./sqlite3 /usr/bin/sqlite3
42+
cd ..
43+
sqlite3 --version
3544
3645
- name: Setup PHP
3746
uses: shivammathur/setup-php@v2
@@ -51,4 +60,4 @@ jobs:
5160
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
5261
5362
- name: Execute tests
54-
run: vendor/bin/pest --no-coverage
63+
run: vendor/bin/pest

0 commit comments

Comments
 (0)