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 31
31
- name : Install SQLite 3 (3.32 is required and only included in Ubuntu 21.x)
32
32
run : |
33
33
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
35
44
36
45
- name : Setup PHP
37
46
uses : shivammathur/setup-php@v2
51
60
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
52
61
53
62
- 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