Revert "Remove authorization header for glue" #6
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: Deploy file builder tests | |
on: | |
- push | |
jobs: | |
deploy_file_builder_tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: [ 8.1 ] | |
name: Deploy file builder tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP with PECL extension | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
- name: Run script | |
run: | | |
cd generator | |
composer install | |
vendor/bin/codecept run |