Merge pull request #37 from FriendsOfBehat/readme #171
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
name: Build | |
on: | |
push: ~ | |
pull_request: ~ | |
release: | |
types: [created] | |
schedule: | |
- | |
cron: "0 1 * * 6" # Run at 1am every Saturday | |
jobs: | |
tests: | |
runs-on: ubuntu-20.04 | |
name: "PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}" | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ["8.1", "8.2", "8.3"] | |
symfony: ["^5.4", "^6.4", "7.0"] | |
exclude: | |
- php: "8.1" | |
symfony: "7.0" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php }}" | |
coverage: none | |
- name: Restrict Symfony version | |
if: matrix.symfony != '' | |
run: | | |
composer global config --no-plugins allow-plugins.symfony/flex true | |
composer global require --no-progress --no-scripts --no-plugins "symfony/flex:^1.11" | |
composer config extra.symfony.require "${{ matrix.symfony }}" | |
- name: Install dependencies | |
run: composer update | |
- name: Run analysis | |
run: composer validate --strict | |
- name: Run tests | |
run: vendor/bin/behat --strict -vvv --no-interaction |