Check is test notification #142
Workflow file for this run
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: Pull request | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 7.1 | |
| extensions: none, curl, dom, mbstring, simplexml, tokenizer, xml, xmlwriter, json, fileinfo | |
| coverage: none | |
| - run: composer install --no-dev | |
| - run: chmod 777 -R vendor | |
| - run: git archive --output=tpay-openapi-php.zip HEAD | |
| - run: zip -ur tpay-openapi-php vendor/ | |
| - run: mkdir sdk && unzip tpay-openapi-php.zip -d sdk | |
| - uses: actions/upload-artifact@v4 | |
| id: sdk-upload | |
| with: | |
| name: 'tpay-openapi-php' | |
| path: 'sdk/' | |
| - uses: mshick/add-pr-comment@v2 | |
| with: | |
| message: | | |
| Tpay OpenAPI SDK - ${{ steps.plugin-upload.outputs.artifact-url }} | |