Repository for liveProject: Test and Analyze Code This repository contains starter files for the second project in the series - these very files are actually a full solution for the first project about developing and building the PowerShell module.
After completing the setup and installing the required dependencies for this project, and forking and cloning this repository, you should be able to run build.ps1 file which would create a fully functioning module in the build directory. At this point the project is good to go, please follow the steps from the workflow. There's also a GitHub workflow to build the module automatically upon pushing it to the Main branch - you might need to enable the workflow.
- build.ps1 file - the main building file. This file takes all source files from the /source/ directory and compiles the module into /build/ directory
- /source/ directory - contains all .ps1 files, and module manifest in the .psd1 file. File in the /source/public/ directory are usable by the user after building and importing the module
- /.github/workflows/ci.yml file - the GitHub action which builds the module