name: CI on: [push] jobs: build: strategy: max-parallel: 15 matrix: # TODO : enable tests on windows operating-system: [ubuntu-latest, macOS-latest] php-versions: ['7.2', '7.3', '7.4'] exclude: - operating-system: macos-latest php-versions: 7.4 name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} runs-on: ${{ matrix.operating-system }} steps: - uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@master with: php-version: ${{ matrix.php-versions }} extension-csv: mbstring, dom, intl - name: Validate composer.json and composer.lock run: composer validate - name: Install dependencies run: composer install --prefer-dist --no-progress --no-suggest - name: Install tools run: ./scripts/install_tools.sh - name: Run test suite run: composer run-script test sonarcloud: name: "SonarCloud" runs-on: ubuntu-latest if: github.event_name != 'pull_request' steps: - uses: actions/checkout@v1 - name: Setup PHP uses: shivammathur/setup-php@master with: php-version: 7.4 extension-csv: mbstring, dom, intl coverage: pcov - name: Install dependencies run: composer install --prefer-dist --no-progress --no-suggest - name: Install tools run: ./scripts/install_tools.sh - name: Run test suite run: composer run-script test -- --coverage-clover=coverage.clover --log-junit=test-report.xml - name: Fix reports run: scripts/fix_reports.sh - name: SonarCloud Scan uses: SonarSource/sonarcloud-github-action@v1.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} documentation: runs-on: ubuntu-latest if: github.repository == 'dauxio/daux.io' && github.event_name != 'pull_request' && github.ref == 'refs/heads/master' steps: - uses: actions/checkout@v2 - name: Install dependencies run: composer install --prefer-dist --no-progress --no-suggest - name: Generate documentation run: bin/daux generate - uses: JamesIves/github-pages-deploy-action@2.0.3 env: FOLDER: "static" BRANCH: gh-pages GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}