Skip to content

Running tests on develop #17

Running tests on develop

Running tests on develop #17

Workflow file for this run

name: Run Tests
run-name: Running tests on ${{ github.base_ref }}
on:
pull_request:
branches:
- develop
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup PHP with PECL extension
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
extensions: zip, mbstring
- name: Install Dependencies
run: composer install --no-interaction --no-progress
- name: Run Test
run: vendor/bin/pest