Skip to content

Commit

Permalink
Add mac OS scan
Browse files Browse the repository at this point in the history
  • Loading branch information
danog committed Nov 23, 2024
1 parent 7e5ce38 commit 3798e30
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/macos-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Run Psalm (mac OS)

on: [push, pull_request]

permissions:
contents: read

jobs:
build:
runs-on: macos-15

steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
ini-values: zend.assertions=1
tools: composer:v2
coverage: none
env:
fail-fast: true

- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
env:
COMPOSER_ROOT_VERSION: dev-master

- name: Run Psalm
run: ./psalm --output-format=github

0 comments on commit 3798e30

Please sign in to comment.