update composer version
This commit is contained in:
parent
f724b220b8
commit
3e8a692035
2 changed files with 4 additions and 4 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
@ -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)
|
||||
|
|
3
Makefile
3
Makefile
|
@ -13,6 +13,3 @@ stan:
|
|||
@echo "==> Running analysis"
|
||||
@php $(BIN_DIR)/phpstan analyse
|
||||
@echo "==> Analysis complete"
|
||||
|
||||
ci: test stan
|
||||
@echo "==> Completed"
|
||||
|
|
Loading…
Add table
Reference in a new issue