Skip to content

Feature/bootstrap and font awesome (#6) #7

Feature/bootstrap and font awesome (#6)

Feature/bootstrap and font awesome (#6) #7

Workflow file for this run

name: Testing
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
testing:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache Composer
id: cache-composer
uses: actions/cache@v3
with:
path: vendor
key: ${{ hashFiles('composer.lock') }}
- name: Cache NPM
id: cache-npm
uses: actions/cache@v3
with:
path: node_modules
key: ${{ hashFiles('package-lock.json') }}
- name: Install
run: ./bin/util/install
- name: Start
run: ./bin/util/start
# - name: Deptrac
# run: ./_docker/bin/app/composer deptrac
# if: always()
- name: ECS
run: ./bin/util/exec app composer cs:check
if: always()
- name: Stan
run: ./bin/util/exec app composer stan
if: always()
# - name: PHPUnit
# run: ./_docker/bin/app/phpunit-with-coverage
# if: always()