Merge pull request #38 from Potelo/fix-credit-card-data #133
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
phpunit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build container | |
run: docker build -t multi-payment . | |
- name: Install Dependencies | |
run: docker run -v $(pwd):/app multi-payment composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | |
- name: Execute tests via PHPUnit | |
env: | |
APP_ENV: testing | |
MULTIPAYMENT_DEFAULT: iugu | |
IUGU_ID: ${{ secrets.IUGU_ID }} | |
IUGU_APIKEY: ${{ secrets.IUGU_APIKEY }} | |
run: | | |
docker run \ | |
--volume $(pwd):/app \ | |
--env APP_ENV \ | |
--env MULTIPAYMENT_DEFAULT \ | |
--env IUGU_ID \ | |
--env IUGU_APIKEY \ | |
multi-payment composer test |