Copy "priority" field value during issue cloning #14
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: CI | |
| on: | |
| push: | |
| pull_request: | |
| # Cancels all previous workflow runs for the same branch that have not yet completed. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| tests: | |
| name: "PHP ${{ matrix.php }}${{ matrix.with_coverage == true && ' with coverage' || ''}}" | |
| runs-on: Ubuntu-20.04 | |
| strategy: | |
| matrix: | |
| php: [ '5.6', '7.0', '7.1', '7.2', '7.3', '8.0', '8.1', '8.2', '8.3' ] | |
| with_coverage: [ false ] | |
| include: | |
| - php: '7.4' | |
| with_coverage: true | |
| fail-fast: false | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| coverage: "xdebug" | |
| php-version: "${{ matrix.php }}" | |
| tools: composer | |
| - name: Install dependencies | |
| uses: "ramsey/composer-install@v3" | |
| with: | |
| dependency-versions: "highest" | |
| - name: Run tests with Coverage | |
| if: "${{ matrix.with_coverage == true }}" | |
| run: | | |
| vendor/bin/phpunit --coverage-clover=coverage.clover | |
| - name: Run tests without Coverage | |
| if: "${{ matrix.with_coverage == false }}" | |
| run: | | |
| vendor/bin/phpunit | |
| - name: Upload Coverage to CodeCov | |
| if: "${{ matrix.with_coverage == true }}" | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| - name: Upload Coverage to Scrutinizer CI (PHP < 8.0) | |
| if: "${{ matrix.php < '8.0' && matrix.with_coverage == true }}" | |
| run: | | |
| wget https://scrutinizer-ci.com/ocular.phar | |
| php ocular.phar code-coverage:upload --repository=g/console-helpers/jira-cli --format=php-clover coverage.clover | |
| - name: Upload Coverage to Scrutinizer CI (PHP >= 8.0) | |
| if: "${{ matrix.php >= '8.0' && matrix.with_coverage == true }}" | |
| run: | | |
| composer require scrutinizer/ocular | |
| vendor/bin/ocular code-coverage:upload --repository=g/console-helpers/jira-cli --format=php-clover coverage.clover |