Merge pull request #55 from jolicode/feat/demo-use-local-bundle #137
This file contains hidden or 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: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| ci: | |
| name: Check Coding Standards | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup castor | |
| uses: castor-php/setup-castor@v0.1.0 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v2 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: 'ghcr.io' | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build and start the test infrastructure | |
| run: castor docker:build | |
| - name: Install dependencies | |
| run: castor backend:install | |
| - name: Install qa tools | |
| run: castor qa:install | |
| - name: PHP CS | |
| run: castor qa:cs --dry-run | |
| - name: PHPStan | |
| run: castor qa:phpstan | |
| - name: Twig linter | |
| run: castor qa:twig-cs --dry-run | |
| - name: Lint the documentation | |
| run: castor qa:doctor-rst --error-format=github | |
| tests: | |
| name: Run tests for PHP ${{ matrix.php-versions }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| max-parallel: 15 | |
| matrix: | |
| php-versions: ['8.2', '8.3', '8.4'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup castor | |
| uses: castor-php/setup-castor@v0.1.0 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: 'ghcr.io' | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build and start the test infrastructure | |
| run: castor docker:build --php-version ${{ matrix.php-versions }} | |
| - name: Install dependencies | |
| run: castor backend:install --php-version ${{ matrix.php-versions }} | |
| - name: Run tests | |
| run: castor qa:phpunit --php-version ${{ matrix.php-versions }} |