File tree Expand file tree Collapse file tree 3 files changed +38
-19
lines changed
Expand file tree Collapse file tree 3 files changed +38
-19
lines changed Original file line number Diff line number Diff line change 1+ # Each line is a file pattern followed by one or more owners.
2+
3+ # CI code should be reviewed by an architect
4+ /.github / @ fulll/chapter-validators-client @ fulll/chapter-validators-plateforme
Original file line number Diff line number Diff line change 1+ name : Application CI
2+
3+ on : pull_request
4+
5+ concurrency :
6+ group : ${{ github.workflow }}-${{ github.ref }}
7+ cancel-in-progress : true
8+
9+ jobs :
10+ tests :
11+ runs-on : ubuntu-latest
12+ name : PHP CI ${{ matrix.php-versions }}
13+ strategy :
14+ matrix :
15+ php-versions :
16+ - 8.0
17+ - 8.1
18+ - 8.2
19+ - 8.3
20+
21+ steps :
22+ - name : Checkout sources
23+ uses : actions/checkout@v4
24+ with :
25+ fetch-depth : 0
26+ - name : Setup PHP
27+ uses : shivammathur/setup-php@v2
28+ with :
29+ php-version : ${{ matrix.php-versions }}
30+ tools : composer
31+ - name : Install dependencies
32+ run : composer install --no-interaction --no-progress
33+ - name : Run unit tests
34+ run : vendor/bin/atoum
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments