Fix/aut 3968/bad request status code #277
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: [ '8.1', '8.2', '8.3' ] | |
include: | |
- php-version: '8.3' | |
coverage: true | |
steps: | |
- name: CI | |
uses: oat-sa/tao-extension-ci-action@v1 | |
with: | |
php: ${{ matrix.php-version }} | |
coverage: ${{ matrix.coverage }} |