File tree 2 files changed +34
-0
lines changed 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Psalm
2
+
3
+ # Controls when the action will run.
4
+ on : [push, pull_request]
5
+
6
+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
7
+ jobs :
8
+ # This workflow contains a single job called "build"
9
+ build :
10
+ # The type of runner that the job will run on
11
+ runs-on : ubuntu-latest
12
+
13
+ # Steps represent a sequence of tasks that will be executed as part of the job
14
+ steps :
15
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
16
+ - uses : actions/checkout@v2
17
+
18
+ - name : Psalm – Static Analysis for PHP
19
+ uses : docker://vimeo/psalm-github-actions
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" ?>
2
+ <psalm
3
+ errorLevel =" 7"
4
+ resolveFromConfigFile =" true"
5
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
6
+ xmlns =" https://getpsalm.org/schema/config"
7
+ xsi : schemaLocation =" https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
8
+ >
9
+ <projectFiles >
10
+ <directory name =" src" />
11
+ <ignoreFiles >
12
+ <directory name =" vendor" />
13
+ </ignoreFiles >
14
+ </projectFiles >
15
+ </psalm >
You can’t perform that action at this time.
0 commit comments