Skip to content

build(deps): bump braze-specification from 104542a to 59390b7 #26

build(deps): bump braze-specification from 104542a to 59390b7

build(deps): bump braze-specification from 104542a to 59390b7 #26

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: true
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
tools: composer:v2
- name: Install dependencies
run: composer install --no-interaction --prefer-dist --optimize-autoloader
- name: Generate code
run: composer build
- name: Check Git working tree
run: |
if [[ $(git diff --stat) != '' ]]; then
echo 'Detected uncommitted changes. See status below:'
git diff
exit 1
fi