feat: re-add caching command, add linting command

This commit is contained in:
Ben Goldsworthy 2021-04-14 23:40:30 +01:00
parent 6891f58f2c
commit 833097ea24

View file

@ -17,20 +17,21 @@ jobs:
- name: Validate composer.json and composer.lock - name: Validate composer.json and composer.lock
run: composer validate --strict run: composer validate --strict
# - name: Cache Composer packages - name: Cache Composer packages
#id: composer-cache id: composer-cache
#uses: actions/cache@v2 uses: actions/cache@v2
#with: with:
# path: vendor path: vendor
# key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
# restore-keys: | restore-keys: |
# ${{ runner.os }}-php- ${{ runner.os }}-php-
- name: Install dependencies - name: Install dependencies
run: composer install --prefer-dist --no-progress --ignore-platform-reqs run: composer install --prefer-dist --no-progress --ignore-platform-reqs
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit" - name: Lint PHP code
# Docs: https://getcomposer.org/doc/articles/scripts.md run: composer run lint:php
# TODO: Add tests
# - name: Run test suite # - name: Run test suite
# run: composer run-script test # run: composer run-script test