We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef641a9 commit b40149bCopy full SHA for b40149b
.drone.yml
.github/workflows/blank.yml
@@ -0,0 +1,25 @@
1
+name: Powershell CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ tags: [ "v*.*.*" ]
7
+ pull_request:
8
9
+ schedule:
10
+ - cron: "0 0 * * 0"
11
12
+jobs:
13
+ lint:
14
+ if: ${{ github.event_name == 'pull_request' }}
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - name: linter
19
+ shell: pwsh
20
+ run: ./Invoke-Linter.ps1 -exitCodeOnError
21
+ if: always()
22
+ - name: formatter
23
24
+ run: ./Invoke-Formatter.ps1 -exitCodeOnFormat
25
0 commit comments