File: coding-style.yml

package info (click to toggle)
php-symfony-mercure-bundle 0.3.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 200 kB
  • sloc: php: 663; makefile: 9
file content (22 lines) | stat: -rw-r--r-- 444 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: "coding style"

on: ["pull_request", "push"]

jobs:
  unit-tests:
    name: "coding style"

    runs-on: "ubuntu-latest"

    steps:
      - name: "checkout"
        uses: "actions/checkout@v4"

      - name: "installing PHP"
        uses: "shivammathur/setup-php@v2"
        with:
          php-version: "8.3"
          tools: php-cs-fixer

      - name: "running php-cs-fixer"
        run: "php-cs-fixer fix --dry-run --diff --no-ansi"