Skip to content

Commit f76d3d2

Browse files
committed
Run GH Action on itself
1 parent e458053 commit f76d3d2

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/push.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI
2+
on: [push, pull_request]
3+
jobs:
4+
lint:
5+
name: Run PSSA
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v1
9+
- name: lint
10+
uses: devblackops/github-action-psscriptanalyzer@master
11+
with:
12+
sendComment: true
13+
failOnErrors: true
14+
failOnWarnings: true
15+
failOnInfos: false
16+
repoToken: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)