mirror of
https://github.com/Codappix/typo3-php-datasets.git
synced 2024-11-13 07:56:10 +01:00
Use composer update instead of install (#7)
There is no composer.lock within the project. Composer would raise a notice when using composer install without a lock file.
This commit is contained in:
parent
94be69a307
commit
65efed087a
2 changed files with 3 additions and 3 deletions
4
.github/workflows/ci.yaml
vendored
4
.github/workflows/ci.yaml
vendored
|
@ -68,7 +68,7 @@ jobs:
|
|||
run: sudo apt update && sudo apt install libxml2-utils
|
||||
|
||||
- name: Install dependencies
|
||||
run: composer install --prefer-dist --no-progress
|
||||
run: composer update --prefer-dist --no-progress
|
||||
|
||||
- name: PHPUnit configuration file
|
||||
run: xmllint --schema vendor/phpunit/phpunit/phpunit.xsd --noout phpunit.xml.dist
|
||||
|
@ -88,7 +88,7 @@ jobs:
|
|||
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Install dependencies
|
||||
run: composer install --prefer-dist --no-progress
|
||||
run: composer update --prefer-dist --no-progress
|
||||
|
||||
- name: Coding Guideline
|
||||
run: ./vendor/bin/php-cs-fixer fix --dry-run --diff
|
||||
|
|
|
@ -24,7 +24,7 @@ let
|
|||
composer
|
||||
];
|
||||
text = ''
|
||||
composer install --prefer-dist --no-progress --working-dir="$PROJECT_ROOT"
|
||||
composer update --prefer-dist --no-progress
|
||||
'';
|
||||
};
|
||||
projectCgl = pkgs.writeShellApplication {
|
||||
|
|
Loading…
Reference in a new issue