fix(deps): update all non-major dependencies #557
Workflow file for this run
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: Rename | |
on: | |
pull_request: | |
push: | |
workflow_dispatch: | |
env: | |
COMPOSER_CACHE_DIR: /tmp/_composer_cache | |
jobs: | |
rename: | |
name: Tests for php${{ matrix.php-versions }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-versions: ['8.1', '8.2', '8.3', '8.4'] | |
steps: | |
- name: Set up php${{ matrix.php-versions }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: ctype,curl,dom,gd,iconv,intl,json,mbstring,openssl,posix,sqlite,xml,zip,gmp | |
coverage: xdebug | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Cache composer cache directory | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.COMPOSER_CACHE_DIR }} | |
key: composer-cache | |
- name: Unit tests | |
run: | | |
export PHP_CS_FIXER_IGNORE_ENV=1 | |
rm -rf /tmp/_composer_cache | |
./.bundle-rename --unique-name=greenlight --friendly-name="Electronic Covid Access Permits" --example-entity=Permit | |
composer update --lock | |
composer validate | |
composer install | |
composer test | |
composer lint |