New osm geocode uri #162
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Adapted from https://github.com/TYPO3GmbH/blog/blob/master/.github/workflows/ci.yml | |
name: CI | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
typo3: [^10.4, ^11.5] | |
php: ['7.4'] | |
include: | |
- typo3: ^11.5 | |
php: '8.0' | |
services: | |
mysql: | |
image: mysql:5.6 | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: false | |
MYSQL_ROOT_PASSWORD: password | |
MYSQL_DATABASE: test | |
ports: | |
- 3306/tcp | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP ${{ matrix.php }}, with composer and extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: mbstring, dom, zip, mysql | |
- name: Start mysql service | |
run: sudo /etc/init.d/mysql start | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Downgrade composer to 2.1 until problem with stream-wrapper is solved | |
# @see: https://github.com/composer/composer/issues/10387 | |
# @see: https://github.com/sebastianbergmann/phpunit/pull/4846 | |
run: composer self-update 2.1.14 | |
- name: Get composer cache directory | |
id: composer-cache | |
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- name: Cache composer dependencies | |
uses: actions/cache@v2 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install dependencies with typo3/cms-core:${{ matrix.typo3 }} | |
run: | | |
composer require typo3/cms-core:${{ matrix.typo3 }} --no-progress | |
# EXT:extensionmanager is needed by static_info_tables for TYPO3 10 | |
composer require typo3/cms-extensionmanager:${{ matrix.typo3 }} --no-progress | |
git checkout composer.json | |
- name: php-cs-fixer | |
run: composer ci:php:fixer | |
- name: Lint PHP | |
run: composer ci:php:lint | |
- name: Unit Tests | |
run: php .build/vendor/bin/phpunit -c .build/vendor/nimut/testing-framework/res/Configuration/UnitTests.xml Tests/Unit | |
- name: Functional Tests | |
env: | |
typo3DatabaseName: test | |
typo3DatabaseUsername: root | |
typo3DatabasePassword: password | |
typo3DatabaseHost: 127.0.0.1 | |
typo3DatabasePort: ${{ job.services.mysql.ports['3306'] }} | |
run: | | |
php .build/vendor/bin/phpunit -c .build/vendor/nimut/testing-framework/res/Configuration/FunctionalTests.xml Tests/Functional |