1
0
Fork 0
mirror of synced 2025-04-10 04:21:01 +00:00

update composer version

This commit is contained in:
Akolzin Dmitry 2020-11-26 15:04:38 +03:00
parent f724b220b8
commit 3e8a692035
2 changed files with 4 additions and 4 deletions

View file

@ -21,6 +21,7 @@ jobs:
with:
php-version: ${{ matrix.php-version }}
coverage: pcov
tools: composer:v1
- name: Composer cache
uses: actions/cache@v2
with:
@ -28,7 +29,9 @@ jobs:
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
- name: Install dependencies
run: composer install -o
- name: Phpstan analysis
run: make stan
- name: Run tests
run: make ci
run: make test
- name: Coverage
run: bash <(curl -s https://codecov.io/bash)

View file

@ -13,6 +13,3 @@ stan:
@echo "==> Running analysis"
@php $(BIN_DIR)/phpstan analyse
@echo "==> Analysis complete"
ci: test stan
@echo "==> Completed"