Update test_example.py #4
This file contains hidden or 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: Build PHAR | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.0' | |
| - name: Build PHAR | |
| run: php -d phar.readonly=0 Build.php | |
| working-directory: ./php | |
| - name: Upload PHAR | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Example | |
| path: php/ServerWebGamePost-1.2.1.phar |