[DEVXP-725] Update versions of github actions #121
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
name: Build | |
on: | |
push: | |
pull_request: | |
release: | |
types: [ published ] | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
build: | |
name: Tests | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
php-version: | |
- "5.6" | |
- "7.0" | |
- "7.1" | |
- "7.2" | |
- "7.4" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
coverage: xdebug | |
- name: Install dependencies | |
run: | | |
composer update --no-ansi --no-interaction --no-progress | |
composer global require php-coveralls/php-coveralls | |
- name: Run tests | |
run: XDEBUG_MODE=coverage vendor/bin/phpunit tests --coverage-clover=build/logs/clover.xml | |
- name: Upload coverage results to Coveralls | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: php-coveralls --coverage_clover=build/logs/clover.xml -v |