Bump composer/composer from 1.10.21 to 1.10.27 #62
This file contains 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: Continuous Integration | |
on: | |
push: | |
pull_request: | |
jobs: | |
package-name: | |
name: Package Name | |
runs-on: ubuntu-latest | |
needs: | |
- lint-json | |
outputs: | |
package-name: ${{ steps.package-name.outputs.package-name }} | |
steps: | |
- uses: actions/checkout@v1 | |
- id: package-name | |
run: | | |
printf "::set-output name=package-name::[\"%s\"]" $(docker run --rm -v "`pwd`:`pwd`" jess/jq jq -r -c '.name' "${GITHUB_WORKSPACE}/composer.json") | |
supported-versions-matrix: | |
name: Supported Versions Matrix | |
runs-on: ubuntu-latest | |
needs: | |
- lint-yaml | |
- lint-json | |
outputs: | |
version: ${{ steps.supported-versions-matrix.outputs.version }} | |
steps: | |
- uses: actions/checkout@v1 | |
- id: supported-versions-matrix | |
uses: WyriHaximus/github-action-composer-php-versions-in-range@v1 | |
supported-checks-matrix: | |
name: Supported Checks Matrix | |
runs-on: ubuntu-latest | |
needs: | |
- lint-yaml | |
- composer-install | |
outputs: | |
check: ${{ steps.supported-checks-matrix.outputs.check }} | |
steps: | |
- uses: actions/checkout@v1 | |
- id: supported-checks-matrix | |
name: Generate check | |
run: | | |
printf "Checks found: %s\r\n" $(make task-list-ci) | |
printf "::set-output name=check::%s" $(make task-list-ci) | |
composer-install: | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ${{ fromJson(needs.supported-versions-matrix.outputs.version) }} | |
composer: [lowest, current, highest] | |
needs: | |
- lint-yaml | |
- lint-json | |
- supported-versions-matrix | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/wyrihaximusnet/php:${{ matrix.php }}-nts-buster-dev-root | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Cache composer packages | |
uses: actions/cache@v1 | |
with: | |
path: ./vendor/ | |
key: ${{ matrix.composer }}-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }} | |
- name: Install Dependencies | |
run: composer update --prefer-lowest --no-progress --ansi --no-interaction --prefer-dist -o | |
if: matrix.composer == 'lowest' | |
- name: Install Dependencies | |
run: composer install --ansi --no-progress --no-interaction --prefer-dist -o | |
if: matrix.composer == 'current' | |
- name: Install Dependencies | |
run: composer update --ansi --no-progress --no-interaction --prefer-dist -o | |
if: matrix.composer == 'highest' | |
qa: | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ${{ fromJson(needs.supported-versions-matrix.outputs.version) }} | |
composer: [lowest, current, highest] | |
check: ${{ fromJson(needs.supported-checks-matrix.outputs.check) }} | |
needs: | |
- lint-yaml | |
- lint-json | |
- composer-install | |
- supported-checks-matrix | |
- supported-versions-matrix | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/wyrihaximusnet/php:${{ matrix.php }}-nts-buster-dev-root | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Cache composer packages | |
uses: actions/cache@v1 | |
with: | |
path: ./vendor/ | |
key: ${{ matrix.composer }}-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }} | |
- name: Install Dependencies | |
run: (test -f vendor && true ) || composer update --prefer-lowest --no-progress --ansi --no-interaction --prefer-dist -o | |
if: matrix.composer == 'lowest' | |
- name: Install Dependencies | |
run: (test -f vendor && true ) || composer install --ansi --no-progress --no-interaction --prefer-dist -o | |
if: matrix.composer == 'current' | |
- name: Install Dependencies | |
run: (test -f vendor && true ) || composer update --ansi --no-progress --no-interaction --prefer-dist -o | |
if: matrix.composer == 'highest' | |
- name: Fetch Tags | |
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* || true | |
if: matrix.check == 'backward-compatibility-check' | |
- run: make ${{ matrix.check }} | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
COVERALLS_RUN_LOCALLY: ${{ secrets.COVERALLS_RUN_LOCALLY }} | |
lint-yaml: | |
name: Lint YAML | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: yaml-lint | |
uses: ibiqlik/action-yamllint@v3 | |
with: | |
config_data: | | |
extends: default | |
rules: | |
line-length: disable | |
document-start: disable | |
truthy: disable | |
lint-json: | |
name: Lint JSON | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: json-syntax-check | |
uses: limitusus/json-syntax-check@v1 | |
with: | |
pattern: "\\.json$" | |
check-mark: | |
name: ✔️ | |
needs: | |
- lint-yaml | |
- lint-json | |
- qa | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "✔️" |