Fix handling of empty strings in Invoke-FzfPsReadlineHandlerProvider #531
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] | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Install needed software | |
run: ./.github/scripts/Install.ps1 | |
shell: pwsh | |
- name: Run PlatyPS on docs | |
run: ./.github/scripts/Run-PlatyPS.ps1 | |
shell: pwsh | |
- name: Build PSFzf-Binary | |
run: ./.github/scripts/Build.ps1 | |
shell: pwsh | |
- name: Run tests | |
run: ./.github/scripts/Tests.ps1 | |
shell: pwsh | |
Mac: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Install needed software | |
run: ./.github/scripts/Install.ps1 | |
shell: pwsh | |
- name: Run PlatyPS on docs | |
run: ./.github/scripts/Run-PlatyPS.ps1 | |
shell: pwsh | |
- name: Build PSFzf-Binary | |
run: ./.github/scripts/Build.ps1 | |
shell: pwsh | |
- name: Run tests | |
run: ./.github/scripts/Tests.ps1 | |
shell: pwsh | |
windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v5 | |
- name: Install needed software | |
run: ./.github/scripts/Install.ps1 | |
shell: powershell | |
- name: Run PlatyPS on docs | |
run: ./.github/scripts/Run-PlatyPS.ps1 | |
shell: powershell | |
- name: Build PSFzf-Binary | |
run: | | |
dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org --configfile $env:APPDATA\NuGet\NuGet.Config | |
./.github/scripts/Build.ps1 | |
shell: powershell | |
- name: Run tests | |
run: ./.github/scripts/Tests.ps1 | |
shell: powershell | |