Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Each line is a file pattern followed by one or more owners.

# CI code should be reviewed by an architect
/.github/ @fulll/chapter-validators-client @fulll/chapter-validators-plateforme
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Application CI

on: pull_request

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
tests:
runs-on: ubuntu-latest
name: PHP CI ${{ matrix.php-versions }}
strategy:
matrix:
php-versions:
- 8.0
- 8.1
- 8.2
- 8.3

steps:
- name: Checkout sources
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
tools: composer
- name: Install dependencies
run: composer install --no-interaction --no-progress
- name: Run unit tests
run: vendor/bin/atoum
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

Loading