Skip to content

Install last version SQLite #668

Install last version SQLite

Install last version SQLite #668

Workflow file for this run

name: Tests
on:
push:
branches: [ 3.x, 4.x ]
pull_request:
branches: [ 3.x, 4.x ]
workflow_dispatch:
env:
DCG_TMP_DIR: /dev/shm
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php:
- "8.3"
drupal:
- "11.x"
dependency-mode:
- prefer-stable
- prefer-lowest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install last version SQLite
run: |
download_link="https://www.sqlite.org/2024/sqlite-tools-linux-x64-3450300.zip"
wget "$download_link" -P /tmp --no-verbose
unzip "/tmp/$(basename "$download_link")" -d /tmp
sudo install /tmp/sqlite3 /usr/local/bin/
- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
ini-values: zend.assertions=1
tools: composer:v2
- name: Install Symfony CLI
run: |
echo 'deb [trusted=yes] https://repo.symfony.com/apt/ /' | sudo tee /etc/apt/sources.list.d/symfony-cli.list
sudo apt update && sudo apt install symfony-cli
- name: Install dependencies
run: composer install --ansi
- name: Update dependencies
run: composer update --${{ matrix.dependency-mode }} --ansi
- name: Run lint
run: ./scripts/lint.sh
- name: Run unit tests
run: ./scripts/unit-tests.sh
- name: Run functional tests
env:
DCG_DRUPAL_VERSION: ${{ matrix.drupal }}
run: ./scripts/functional-tests.sh
- name: Run SUT tests
env:
DCG_DRUPAL_VERSION: ${{ matrix.drupal }}
run: ./scripts/sut-tests.sh