Feature/bootstrap and font awesome #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |