We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d0912c commit b0f4763Copy full SHA for b0f4763
1 file changed
.github/workflows/Build.yml
@@ -24,5 +24,10 @@ jobs:
24
python -m pip install --upgrade pip
25
pip install -r requirements.txt
26
27
- - name: Run Python script
28
- run: python advanced_disk_manager.py
+ - name: Run Python script (health check on disk C)
+ run: python advanced_disk_manager.py --action healthcheck --disk C:
29
+
30
+ # Example of formatting a disk (E:) with NTFS and label 'MyDrive'
31
+ - name: Run Python script (format disk E)
32
+ run: python advanced_disk_manager.py --action format --disk E: --fs NTFS --label MyDrive
33
0 commit comments