File: integrate.yaml

package info (click to toggle)
php-phpdocumentor-reflection-docblock 6.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,380 kB
  • sloc: php: 7,895; xml: 113; makefile: 57
file content (58 lines) | stat: -rw-r--r-- 1,670 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# https://docs.github.com/en/actions

name: "Integrate"

on: # yamllint disable-line rule:truthy
  push:
    branches:
      - "6.x"
  pull_request: null
  # Allow manually triggering the workflow.
  workflow_dispatch: null

jobs:
  code-coverage:
    name: "Code Coverage"
    uses: "phpDocumentor/.github/.github/workflows/code-coverage.yml@v0.9"
    with:
      composer-root-version: "6.x-dev"

  coding-standards:
    name: "Coding Standards"
    uses: "phpDocumentor/.github/.github/workflows/coding-standards.yml@v0.9"
    with:
      composer-root-version: "6.x-dev"

  dependency-analysis:
    name: "Dependency analysis"
    uses: "phpDocumentor/.github/.github/workflows/dependency-analysis.yml@v0.9"
    with:
      composer-root-version: "6.x-dev"

  lint-root:
    name: "Lint root"
    uses: "phpDocumentor/.github/.github/workflows/lint.yml@v0.9"
    with:
      composer-options: "--no-check-publish --ansi"

  static-analysis:
    name: "Static analysis"
    uses: "phpDocumentor/.github/.github/workflows/static-analysis.yml@v0.9"
    with:
      php-extensions: "none, ctype, dom, json, mbstring, phar, simplexml, tokenizer, xml, xmlwriter, fileinfo, pcntl, posix"
      composer-root-version: "6.x-dev"

  unit-tests:
    name: "Unit test"
    uses: "phpDocumentor/.github/.github/workflows/continuous-integration.yml@v0.9"
    with:
      composer-root-version: "6.x-dev"
      upcoming-releases: true

  integration-tests:
    name: "Integration test"
    uses: "phpDocumentor/.github/.github/workflows/continuous-integration.yml@v0.9"
    with:
      composer-root-version: "6.x-dev"
      upcoming-releases: true
      test-suite: "integration"