Skip to content

build(deps): bump crowdin/github-action from 1.5.1 to 2.2.0 (#51) #115

build(deps): bump crowdin/github-action from 1.5.1 to 2.2.0 (#51)

build(deps): bump crowdin/github-action from 1.5.1 to 2.2.0 (#51) #115

Workflow file for this run

name: Build
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
env:
XDEBUG_MODE: coverage
steps:
- uses: actions/checkout@v4
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v4
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress
- name: Run test suite
run: php vendor/bin/phpunit --colors