Skip to content

Issue 54: Abnamro Bank :86: has 2 different variants. giro and sepa #26

Issue 54: Abnamro Bank :86: has 2 different variants. giro and sepa

Issue 54: Abnamro Bank :86: has 2 different variants. giro and sepa #26

Workflow file for this run

name: PhpUnit
on: [push]
jobs:
run:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: ['ubuntu-22.04']
php-versions: ['7.4', '8.0']
steps:
- uses: actions/checkout@v1
- name: Run composer install
run: composer install -n --prefer-dist
env:
APP_ENV: testing
- name: Prepare Application
run: |
cp phpunit.xml.dist phpunit.xml
- name: PHPUnit Tests
run: ./vendor/bin/phpunit
env:
TEST_NAME: DEV
# with:
# bootstrap: vendor/autoload.php
# configuration: test/phpunit.xml
# args: --coverage-text
# - name: Upload artifacts
# uses: actions/upload-artifact@master
# if: failure()
# with:
# name: Logs
# path: ./storage/logs