fix: update bluem_requests_view function for improved request handling #281
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: CI | |
| on: [push] | |
| jobs: | |
| build-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Make .envfile | |
| uses: SpicyPizza/create-envfile@v1.3 | |
| with: | |
| envkey_BLUEM_SENDER_ID: ${{ secrets.TEST_SENDER_ID }} | |
| envkey_BLUEM_ENV: "test" | |
| envkey_BLUEM_TEST_ACCESS_TOKEN: ${{ secrets.TEST_ACCESS_TOKEN }} | |
| envkey_BLUEM_MERCHANTID: "0020000387" | |
| envkey_BLUEM_THANKSPAGE: "thanks" | |
| envkey_BLUEM_BRANDID: "ExampleMandate" | |
| envkey_BLUEM_BRANDID_PAYMENTS: "ExamplePayment" | |
| envkey_BLUEM_BRANDID_IDENTITY: "ExampleIdentity" | |
| envkey_BLUEM_BRANDID_MANDATES: "ExampleMandate" | |
| envkey_BLUEM_MERCHANTRETURNURLBASE: "https://bluem.nl" | |
| file_name: .env | |
| fail_on_empty: false | |
| - uses: actions/checkout@v2 | |
| - uses: php-actions/composer@v5 | |
| - name: PHPUnit Tests | |
| uses: php-actions/phpunit@v2 | |
| with: | |
| php_version: 8.1 | |
| bootstrap: vendor/autoload.php | |
| configuration: ./.github/workflows/phpunit.xml | |
| - run: echo "🍏 This job's status is ${{ job.status }}." |