pdfdraw/.github/workflows/composer.yml
Joachim Bauch 09e38bde61
Vendor JWT dependency.
This allows having other apps provide a global "JWT" which then will not
conflict with the "JWT" in this app.
2023-03-14 15:05:52 +01:00

43 lines
827 B
YAML

name: Composer
on:
pull_request:
paths:
- '.github/workflows/composer.yml'
- 'composer.json'
- 'composer.lock'
- 'vendor-bin/**/composer.json'
- 'vendor-bin/**/composer.lock'
push:
branches:
- master
- stable*
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['7.4']
name: php${{ matrix.php-versions }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
- name: Install dependencies & build
run: composer i