Skip to content

Rollback tax calculation fix from the other day (#882) #3588

Rollback tax calculation fix from the other day (#882)

Rollback tax calculation fix from the other day (#882) #3588

Workflow file for this run

name: Test Suite
on:
push:
pull_request:
jobs:
php_tests:
if: "!contains(github.event.head_commit.message, 'changelog')"
runs-on: ${{ matrix.os }}
strategy:
matrix:
php: [8.2, 8.1]
laravel: [10.*]
statamic: [^4.0]
testbench: [8.*]
os: [ubuntu-latest]
name: ${{ matrix.php }} - ${{ matrix.statamic }} - ${{ matrix.laravel }}
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "statamic/cms:${{ matrix.statamic }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer install --no-interaction
- name: Run PHPUnit
run: composer test
env:
STRIPE_KEY: ${{ secrets.STRIPE_KEY }}
STRIPE_SECRET: ${{ secrets.STRIPE_SECRET }}
MOLLIE_KEY: ${{ secrets.MOLLIE_KEY }}
MOLLIE_PROFILE: ${{ secrets.MOLLIE_PROFILE }}