Try again to fix path problems so we test the right module #107
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: {} | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
FORCE_COLOR: 1 | |
steps: | |
- uses: earthly/actions-setup@v1 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: earthly +test | |
if: github.ref != 'refs/heads/main' | |
run: earthly --strict +test | |
- name: earthly +push | |
if: github.ref == 'refs/heads/main' | |
run: earthly --push --secret NUGET_API_KEY --secret PSGALLERY_API_KEY --strict +all | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} | |
PSGALLERY_API_KEY: ${{ secrets.PSGALLERY_API_KEY }} | |
- name: Upload Built Modules | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Modules | |
path: | | |
Modules/* | |
!Modules/*-TestResults | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: TestResults | |
path: Modules/ModuleBuilder-TestResults | |
# These ones are just for the test matrix | |
- name: Upload Tests | |
uses: actions/upload-artifact@v4 | |
with: | |
name: PesterTests | |
path: ${{github.workspace}}/Tests | |
- name: Upload build.requires.psd1 | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build.requires.psd1 | |
path: ${{github.workspace}}/build.requires.psd1 | |
test: | |
needs: build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest, ubuntu-latest, macos-latest] | |
steps: | |
- name: Download build.requires.psd1 | |
uses: actions/download-artifact@v4 | |
with: | |
name: build.requires.psd1 | |
- name: Download Pester Tests | |
uses: actions/download-artifact@v4 | |
with: | |
name: PesterTests | |
path: PesterTests | |
- name: Download Build Output | |
uses: actions/download-artifact@v4 | |
with: | |
name: Modules | |
path: Modules # /home/runner/work/ModuleBuilder/ModuleBuilder/Modules | |
- name: Install Output Modules | |
shell: pwsh | |
run: | # PowerShell | |
$ModuleDestination = if ($IsWindows) { | |
Join-Path ([Environment]::GetFolderPath('MyDocuments')) 'PowerShell/Modules' | |
} else { | |
Join-Path $HOME '.local/share/powershell/Modules' | |
} | |
Get-ChildItem -Directory Modules -OutVariable Modules | |
| Move-Item -Destination $ModuleDestination -Force | |
Write-Host "Installing $($Modules -join ', ') to $ModuleDestination" | |
$Env:PSModulePath -split ([IO.Path]::PathSeparator) | Out-Host | |
@(Get-Content build.requires.psd1) | |
| Where { $_ -notmatch "ModuleBuilder"} | |
| Set-Content build.requires.psd1 | |
- name: ⚡ Install Required Modules | |
uses: JustinGrote/[email protected] | |
- name: Invoke Pester Tests | |
id: pester | |
uses: zyborg/pester-tests-report@v1 | |
with: | |
# include_paths: tests | |
# exclude_paths: tests/powershell1,tests/powershell2 | |
# exclude_tags: skip_ci | |
report_name: module_tests | |
report_title: My Module Tests | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: dump test results | |
shell: pwsh | |
run: | # PowerShell | |
Write-Host 'Total Tests Executed...: ${{ steps.pester.outputs.total_count }}' | |
Write-Host 'Total Tests PASSED.....: ${{ steps.pester.outputs.passed_count }}' | |
Write-Host 'Total Tests FAILED.....: ${{ steps.pester.outputs.failed_count }}' | |