Skip to content

YODA-T-64 Update example's README.md with instructions for setting up… #2

YODA-T-64 Update example's README.md with instructions for setting up…

YODA-T-64 Update example's README.md with instructions for setting up… #2

Workflow file for this run

name: Install Composer Dependencies
on: [push, pull_request]
jobs:
install:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0' # Set the PHP version here
- name: Install Composer Dependencies
run: composer install --prefer-dist --no-progress --no-suggest