/
dimamir
/
Wsdl_PackageGenerator
Обзор
Документация
Войти
/
dimamir
/
Wsdl_PackageGenerator
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
.github/workflows/static_coverage.yml
60 строк
2 KB
Mikaël DELSOL
Add static code coverage to Pages
12 апр 2023, 10:31
12 апр 2023, 10:31
ac4284a
Код
Авторство
О чём код?
# Simple workflow for deploying static content to GitHub Pages name: Deploy code coverage content to Pages on: # Runs on pushes targeting the default branch push: branches: ["develop"] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages permissions: contents: read pages: write id-token: write # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. concurrency: group: "pages" cancel-in-progress: false jobs: # Single deploy job since we're just deploying deploy: environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 with: fetch-depth: 0 - name: Setup PHP with Xdebug uses: shivammathur/setup-php@v2 with: php-version: 7.4 coverage: xdebug - name: Install dependencies with composer run: composer update --no-ansi --no-interaction --no-progress - name: Generate coverage report with phpunit run: vendor/bin/phpunit --coverage-html=coverage - name: Setup Pages uses: actions/configure-pages@v3 - name: Upload artifact uses: actions/upload-pages-artifact@v1 with: # Upload entire repository path: 'coverage' - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v2