composer.json: bump rdf-interface to ^2 #85
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: phpunit | |
on: push | |
jobs: | |
phpunit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/cache@v2 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: composer | |
run: composer update | |
- name: phpunit | |
run: XDEBUG_MODE=coverage vendor/bin/phpunit | |
- name: document | |
run: | | |
docker run --rm -v $(pwd):/data phpdoc/phpdoc:3 --directory=src --directory=vendor/sweetrdf/rdf-interface/src --directory=vendor/sweetrdf/rdf-helpers/src/ --target=docs | |
git fetch && git checkout docs -- | |
for i in `ls -1 | grep -v ^docs$`; do rm -fR $i ; done | |
cp -R docs/* . | |
git config user.email "[email protected]" | |
git config user.name "Github Actions Workflow" | |
git add * || true | |
git commit -a -m 'Automatic documentation generation' && git push origin docs || true | |
- name: coveralls | |
run: | | |
export COVERALLS_RUN_LOCALLY=1 | |
export COVERALLS_REPO_TOKEN=${{ secrets.coverallsToken }} | |
rm -fR composer.json composer.lock vendor | |
composer require php-coveralls/php-coveralls | |
php vendor/bin/php-coveralls -v | |
phpstan: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/cache@v2 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: composer | |
run: composer update | |
- name: phpstan | |
run: vendor/bin/phpstan analyse -l 8 src tests || true | |