Merge pull request #72 from smartbooster/remove_parameter_history_legacy #223
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- "master" | |
jobs: | |
build_test: | |
runs-on: ubuntu-latest | |
name: Build and test on ${{ matrix.image }} | |
container: ${{ matrix.image }} | |
strategy: | |
matrix: | |
image: | |
- registry.gitlab.com/pia-production/hosting/docker-php:8.2 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Check PHP Version | |
run: php -v | |
# —— Composer 🧙️ ————————————————————————————————————————————————————————— | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Install | |
run: make install | |
# —— Tests 🧪 ———————————————————————————————————————————————————————————— | |
- name: Phpunit tests | |
run: make coverage | |
# —— QA ✔️️ ——————————————————————————————————————————————————————————————— | |
- name: Qualimetry | |
run: make qa |