Fix/aut 3876/editor passage remove #139
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: Continuous integration | |
on: | |
push: | |
branches: [ master, develop ] | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
ci: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
fail-fast: false | |
matrix: | |
operating-system: [ ubuntu-latest ] | |
php-version: [ '7.4', '8.0', '8.1' ] | |
include: | |
- php-version: '8.1' | |
coverage: true | |
steps: | |
- name: CI | |
uses: oat-sa/tao-extension-ci-action@v1 | |
with: | |
php: ${{ matrix.php-version }} | |
coverage: ${{ matrix.coverage }} |