name: CI on: [push] jobs: build-test: runs-on: ubuntu-latest permissions: contents: write steps: - uses: actions/checkout@v5 - run: echo "The ${{ github.repository }} repository has been cloned to the runner." - name: composer install --no-dev uses: php-actions/composer@v6 with: command: install args: --no-dev php_version: "8.4" - run: echo "Composer dependencies have been installed" - run: vendor/bin/phpunit