Skip to content

Commit

Permalink
Move all jobs to ci.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
OskarStark committed Sep 17, 2024
1 parent 1397f2d commit 3ab5ed4
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 67 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,62 @@ jobs:
name: test.log
path: var/log/test.log
retention-days: 5

phpstan:
name: PHPStan
runs-on: ubuntu-latest

steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
coverage: none
tools: phpstan:1.10, cs2pr

- name: Checkout code
uses: actions/checkout@v4

- name: Download dependencies
uses: ramsey/composer-install@v3

- name: PHPStan
run: phpstan analyze --no-progress --error-format=checkstyle | cs2pr

php-cs-fixer:
name: PHP-CS-Fixer
runs-on: ubuntu-latest

steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
coverage: none
tools: php-cs-fixer:3.42, cs2pr

- name: Checkout code
uses: actions/checkout@v4

- name: PHP-CS-Fixer
run: php-cs-fixer fix --dry-run --format=checkstyle | cs2pr

psalm:
name: Psalm
runs-on: ubuntu-latest
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
coverage: none
tools: vimeo/psalm:5.18.0

- name: Checkout code
uses: actions/checkout@v4

- name: Download dependencies
uses: ramsey/composer-install@v3

- name: Psalm
run: psalm --no-progress --output-format=github
67 changes: 0 additions & 67 deletions .github/workflows/static.yml

This file was deleted.

0 comments on commit 3ab5ed4

Please sign in to comment.