Merge pull request #608 from weblate/weblate-xbackbone-xbackbone #450
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: PHP Composer | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
operating-system: [ubuntu-latest] | |
php-versions: ["7.3", "7.4", "8.0", "8.1", "8.2"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Validate composer.json and composer.lock | |
run: composer validate --no-check-version | |
- name: Install dependencies | |
run: composer install --no-progress | |
- name: Run test suite | |
run: vendor/bin/phpunit --no-coverage |