Bump bootstrap from 4.5.2 to 5.0.0 #168
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: Master workflow | |
on: | |
pull_request: | |
branches: | |
- 'master' | |
push: | |
branches: | |
- 'master' | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
#- name: PHP Security Checker | |
# uses: StephaneBour/actions-php-security-checker@1.0 | |
- name: Setup project | |
run: make setup | |
- name: Check lint | |
run: make lint | |
- name: Execute tests (Unit and Feature tests) via PHPUnit | |
run: make test |