Skip to content

Improve tooling, checks and workflows #210

Improve tooling, checks and workflows

Improve tooling, checks and workflows #210

Workflow file for this run

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