Skip to content

Commit f04a4e2

Browse files
committed
update test workflow to use latest sqlite3 version
1 parent 4f914c7 commit f04a4e2

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ jobs:
2626

2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@v2
29+
uses: actions/checkout@v3
3030

3131
- name: Install SQLite 3 (3.32 is required and only included in Ubuntu 21.x)
3232
run: |
3333
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
3737
./configure
3838
make
3939
sudo make install
@@ -50,9 +50,11 @@ jobs:
5050
run: |
5151
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
5252
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
53+
5354
- name: Install dependencies
5455
run: |
5556
composer require "laravel/framework:${{ matrix.laravel }}" "nesbot/carbon:^2.63" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
5657
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
58+
5759
- name: Execute tests
5860
run: vendor/bin/pest --no-coverage

0 commit comments

Comments
 (0)