feat: add not-run pillars to Services Not Assessed section #80
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| cache: "pip" | |
| cache-dependency-path: requirements-test.txt | |
| - name: Install dependencies | |
| run: pip install -r requirements-test.txt | |
| - name: Run tests | |
| run: pytest AWS/ OnPrem/Linux/ Network/ Email/ tests/ -v --import-mode=importlib | |
| pester: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Pester | |
| shell: pwsh | |
| run: Install-Module Pester -Force -Scope CurrentUser -MinimumVersion 5.0 | |
| - name: Run Pester tests | |
| shell: pwsh | |
| run: Invoke-Pester -Path Azure, OnPrem/Windows, M365 -Output Detailed |