Skip to content

Commit 881077c

Browse files
committed
Github Actions: add actions for powershell modules
1 parent 686fbea commit 881077c

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/powershell.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: powershell
2+
on:
3+
push:
4+
pull_request:
5+
6+
jobs:
7+
test-modules:
8+
runs-on: windows-2019
9+
steps:
10+
- uses: actions/checkout@v4
11+
- env:
12+
MODULES_DIR: modules
13+
shell: pwsh
14+
run: ci/tasks/test-units-bosh-psmodules/run.ps1
15+
test-stembuild-modules:
16+
runs-on: windows-2019
17+
steps:
18+
- uses: actions/checkout@v4
19+
- env:
20+
MODULES_DIR: stembuild/modules
21+
shell: pwsh
22+
run: ci/tasks/test-units-bosh-psmodules/run.ps1
23+
test-stembuild-automation:
24+
runs-on: windows-2019
25+
steps:
26+
- uses: actions/checkout@v4
27+
- env:
28+
MODULES_DIR: stembuild/stemcell-automation
29+
shell: pwsh
30+
run: ci/tasks/test-units-bosh-psmodules/run.ps1

0 commit comments

Comments
 (0)