Skip to content

Commit

Permalink
.github/workflows: test against multiple php versions
Browse files Browse the repository at this point in the history
  • Loading branch information
zozlak committed Apr 22, 2024
1 parent da522d6 commit b8ebc84
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 13 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/document.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: phpunit

on: release

jobs:
document:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: composer
run: composer update
- 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/ --directory=vendor/ml/json-ld --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
26 changes: 13 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,24 @@ on: push

jobs:
phpunit:
strategy:
matrix:
php: [8.1, 8.2, 8.3, 8.4]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom,json,mbstring,pcre,xmlreader
coverage: xdebug
env:
fail-fast: true
- uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
restore-keys: ${{ runner.os }}-${{ matrix.php }}-composer-
- name: composer
run: composer update
- name: phpunit
Expand All @@ -21,16 +31,6 @@ jobs:
export COVERALLS_RUN_LOCALLY=1
export COVERALLS_REPO_TOKEN=${{ secrets.coverallsToken }}
php vendor/bin/php-coveralls -v
- 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/ --directory=vendor/ml/json-ld --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
phpstan:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit b8ebc84

Please sign in to comment.