Add public clearCache method #122
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
| --- | |
| on: # yamllint disable-line rule:truthy | |
| pull_request: | |
| branches: | |
| - 2.x | |
| name: 🔍 Integration | |
| jobs: | |
| commit-linting: | |
| timeout-minutes: 4 | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| steps: | |
| - name: 📦 Check out the codebase | |
| uses: actions/checkout@v4.1.1 | |
| - name: 🧐 Lint commits using "commitlint" | |
| uses: wagoid/commitlint-github-action@v6.0.1 | |
| with: | |
| configFile: ${{ github.workspace }}/.github/.commitlint.config.mjs | |
| failOnWarnings: false | |
| failOnErrors: false | |
| helpURL: 'https://github.com/conventional-changelog/commitlint/#what-is-commitlint' | |
| coding-standards: | |
| timeout-minutes: 4 | |
| runs-on: ${{ matrix.os }} | |
| concurrency: | |
| cancel-in-progress: true | |
| group: coding-standards-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| php-version: | |
| - '8.2' | |
| dependencies: | |
| - locked | |
| steps: | |
| - name: 📦 Check out the codebase | |
| uses: actions/checkout@v4.1.1 | |
| - name: 🧐 Lint YAML files | |
| uses: ibiqlik/action-yamllint@v3.1.1 | |
| with: | |
| config_file: .yamllint.yaml | |
| file_or_dir: '.' | |
| strict: true | |
| - name: 🛠️ Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| extensions: mbstring, pdo, pdo_sqlite | |
| ini-values: error_reporting=E_ALL | |
| - name: 🛠️ Setup problem matchers | |
| run: | | |
| echo "::add-matcher::${{ runner.tool_cache }}/php.json" | |
| - name: 🤖 Validate composer.json and composer.lock | |
| run: composer validate --ansi --strict | |
| - name: 📥 Install dependencies with composer | |
| uses: ramsey/composer-install@v3 | |
| with: | |
| dependency-versions: ${{ matrix.dependencies }} | |
| - name: 🔍 Run composer-normalize | |
| run: composer normalize --ansi --dry-run | |
| ... |