Skip to content

UHF-11184: Remove druidfi/tools #144

UHF-11184: Remove druidfi/tools

UHF-11184: Remove druidfi/tools #144

Workflow file for this run

on:
pull_request:
push:
branches:
- main
env:
SYMFONY_DEPRECATIONS_HELPER: disabled
name: CI
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.3', '8.4']
container:
image: ghcr.io/city-of-helsinki/drupal-web:${{ matrix.php-versions }}
options: --user 1001
services:
db:
image: mysql:8
env:
MYSQL_USER: drupal
MYSQL_PASSWORD: drupal
MYSQL_DATABASE: drupal
MYSQL_ROOT_PASSWORD: drupal
ports:
- 3306:3306
steps:
- uses: actions/checkout@v4
- name: Install required composer dependencies
run: composer install
- name: Run PHPCS
run: vendor/bin/phpcs --ignore=*/vendor/*,*/sut/* .
- name: Run phpstan
run: vendor/bin/phpstan analyze -c phpstan.neon .
- name: Run PHPUnit tests
run:
vendor/bin/phpunit -c tests/phpunit.xml tests/
- uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}