Skip to content

Commit

Permalink
SC-278: add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
timager authored and Timofey Geraymovich committed Aug 30, 2024
1 parent f5350bb commit 4d51b1c
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: PHP Composer

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up PHP 7.4
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress

- name: Run tests
run: vendor/bin/phpunit

0 comments on commit 4d51b1c

Please sign in to comment.