Improve tooling, checks and workflows #202
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: Lint, analyse and test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
name: Linting | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run linting | |
run: docker compose run --rm builder composer test:lint | |
testing: | |
runs-on: ubuntu-latest | |
name: Testing | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run testing | |
run: docker compose run --rm builder composer test:phpunit | |
analysis: | |
runs-on: ubuntu-latest | |
name: Analysis | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run analysis | |
run: docker compose run --rm builder composer test:analysis |