Skip to content

Commit

Permalink
Add psalm action
Browse files Browse the repository at this point in the history
  • Loading branch information
davidrans committed Aug 20, 2024
1 parent d11f37f commit 142e5b4
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/psalm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: psalm

on:
push:
branches:
- '**'
pull_request:
branches:
- '**'

jobs:
psalm:
name: psalm
runs-on: ubuntu-latest

timeout-minutes: 15
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Run composer install
run: composer install

- name: Run psalm
run: ./vendor/bin/psalm --output-format=github --update-baseline

0 comments on commit 142e5b4

Please sign in to comment.