File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 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
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
You can’t perform that action at this time.
0 commit comments