Skip to content

update run scheduled orders #81

update run scheduled orders

update run scheduled orders #81

Workflow file for this run

name: PHP CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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: Start docker-compose
run: make docker-up
- name: Validate composer.json and composer.lock
run: make lint
- name: Run Codeception tests
run: make test