Skip to content

Create github actions #11

Create github actions

Create github actions #11

Workflow file for this run

name: PHP Composer
on:
push:
branches: [ "b-8.0.x-drop-smarty-template-OXDEV-7524" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: composer install
run_tests:
runs-on: ubuntu-latest
needs: build
steps:
- name: Debug vendor/bin contents
run: ls -l vendor/bin
- name: Run tests
run: php vendor/bin/phpunit tests