Skip to content

Merge branch 'master' into develop #4

Merge branch 'master' into develop

Merge branch 'master' into develop #4

Workflow file for this run

name: Build and Test
on:
push:
branches:
- "**"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-13, windows-latest]
php-version: ["8.2", "8.3"]
include:
- os: ubuntu-latest
phpts: "nts"
- os: macos-13
phpts: "nts"
- os: windows-latest
phpts: "ts"
steps:
- uses: actions/checkout@v4
- name: Install PHP ${{ matrix.php-version }}
id: setup-php
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: composer:v2
env:
update: true
phpts: ${{ matrix.phpts }}
- name: Check PHP Version
run: php -v
- name: Build and Install
run: composer install
- name: Run Tests
if: runner.os != 'Windows'
shell: bash
env:
VIRGIL_PURE_KIT_ENV: ${{ secrets.VIRGIL_PURE_KIT_ENV }}
run: |
echo "${VIRGIL_PURE_KIT_ENV}" > .env
vendor/bin/phpunit --configuration phpunit.xml