File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -26,14 +26,14 @@ jobs:
26
26
27
27
steps :
28
28
- name : Checkout code
29
- uses : actions/checkout@v2
29
+ uses : actions/checkout@v3
30
30
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 install build-essential tar wget
34
- wget https://www.sqlite.org/2021 /sqlite-autoconf-3370000 .tar.gz
35
- tar xzf sqlite-autoconf-3370000 .tar.gz
36
- cd sqlite-autoconf-3370000
34
+ wget https://www.sqlite.org/2022 /sqlite-autoconf-3400000 .tar.gz
35
+ tar xzf sqlite-autoconf-3400000 .tar.gz
36
+ cd sqlite-autoconf-3400000
37
37
./configure
38
38
make
39
39
sudo make install
50
50
run : |
51
51
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
52
52
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
53
+
53
54
- name : Install dependencies
54
55
run : |
55
56
composer require "laravel/framework:${{ matrix.laravel }}" "nesbot/carbon:^2.63" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
56
57
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
58
+
57
59
- name : Execute tests
58
60
run : vendor/bin/pest --no-coverage
You can’t perform that action at this time.
0 commit comments