aboutsummaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/test.yaml
blob: dc7765371fe7077baf6cfb731a1c4342ea3a9fba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: Test

on:
  push:
    branches:
      - main

jobs:
  test:
    name: Test
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: php-actions/composer@v6

      - name: Run ECS
        run: composer ecs

      - name: Run PHPStan
        run: composer phpstan

      - name: Run PHPUnit
        run: composer phpunit