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