Skip to content

Commit 6201959

Browse files
committed
minor #524 Add Fabbot as a GitHub Actions (GromNaN)
This PR was merged into the 3.x branch. Discussion ---------- Add Fabbot as a GitHub Actions | Q | A | ------------- | --- | Branch? | 3.x | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | - | License | MIT Uses [symfony-tools/fabbot](https://github.com/symfony-tools/fabbot). This workflow runs PHP-CS-Fixer, so we can remove it from the "ci" workflow. Commits ------- e1931c6 Add Fabbot as a GitHub Actions
2 parents 9fd6e45 + e1931c6 commit 6201959

File tree

2 files changed

+15
-17
lines changed

2 files changed

+15
-17
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,6 @@ on:
55
pull_request:
66

77
jobs:
8-
php-cs-fixer:
9-
runs-on: ubuntu-latest
10-
name: Coding Standards
11-
steps:
12-
- name: Checkout
13-
uses: actions/checkout@v4
14-
15-
- name: Setup PHP
16-
uses: shivammathur/setup-php@v2
17-
with:
18-
php-version: 8.3
19-
coverage: none
20-
tools: php-cs-fixer, cs2pr
21-
22-
- name: Run PHP-CS-Fixer
23-
run: php-cs-fixer fix --dry-run --format checkstyle | cs2pr
24-
258
test:
269
runs-on: ubuntu-latest
2710
name: PHPUnit Tests

.github/workflows/fabbot.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Fabbot
2+
3+
on:
4+
pull_request:
5+
6+
permissions:
7+
contents: read
8+
9+
jobs:
10+
call-fabbot:
11+
name: Fabbot
12+
uses: symfony-tools/fabbot/.github/workflows/fabbot.yml@main
13+
with:
14+
package: Monolog Bundle
15+
check_license: true

0 commit comments

Comments
 (0)