Action-Test-Src-WithManifest - [🩹 [Patch]: Add debug and verbose logging for module import in test #99] by @MariusStorhaug #378
Workflow file for this run
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: Action-Test-Src-WithManifest | |
| run-name: 'Action-Test-Src-WithManifest - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}' | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| ActionTestsSrcWithManifest: | |
| name: Action-Test [Src-WithManifest] - [${{ matrix.os }}] | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Action-Test | |
| uses: ./ | |
| id: action-test | |
| with: | |
| Name: PSModuleTest | |
| WorkingDirectory: tests/srcWithManifestTestRepo | |
| Settings: SourceCode |