Skip to content

Commit 06da98a

Browse files
Added placeholder settings for fast iteration (#8)
## Description This pull request adds configuration options to the `.github/PSModule.yml` file to allow skipping various test and build steps. These changes make it easier to customize which checks and builds are run in CI. Configuration changes for skipping steps: * Added options to skip test results, source code checks, and PowerShell module checks in the `Test` section. * Added options to skip Windows and MacOS module checks under the `Module` section. * Added an option to skip documentation builds in the `Build` section. ## Type of change <!-- Use the check-boxes [x] on the options that are relevant. --> - [ ] 📖 [Docs] - [ ] 🪲 [Fix] - [x] 🩹 [Patch] - [ ] ⚠️ [Security fix] - [ ] 🚀 [Feature] - [ ] 🌟 [Breaking change] ## Checklist <!-- Use the check-boxes [x] on the options that are relevant. --> - [x] I have performed a self-review of my own code - [x] I have commented my code, particularly in hard-to-understand areas
1 parent 79b00a2 commit 06da98a

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/PSModule.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,17 @@
55
Test:
66
CodeCoverage:
77
PercentTarget: 0
8+
# TestResults:
9+
# Skip: true
10+
# SourceCode:
11+
# Skip: true
12+
# PSModule:
13+
# Skip: true
14+
# Module:
15+
# Windows:
16+
# Skip: true
17+
# MacOS:
18+
# Skip: true
19+
# Build:
20+
# Docs:
21+
# Skip: true

0 commit comments

Comments
 (0)