Skip to content

Commit 3798e30

Browse files
committed
Add mac OS scan
1 parent 7e5ce38 commit 3798e30

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/macos-scan.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Run Psalm (mac OS)
2+
3+
on: [push, pull_request]
4+
5+
permissions:
6+
contents: read
7+
8+
jobs:
9+
build:
10+
runs-on: macos-15
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: shivammathur/setup-php@v2
15+
with:
16+
php-version: '8.4'
17+
ini-values: zend.assertions=1
18+
tools: composer:v2
19+
coverage: none
20+
env:
21+
fail-fast: true
22+
23+
- name: Install dependencies
24+
run: composer install --prefer-dist --no-progress --no-suggest
25+
env:
26+
COMPOSER_ROOT_VERSION: dev-master
27+
28+
- name: Run Psalm
29+
run: ./psalm --output-format=github

0 commit comments

Comments
 (0)