Fix no PRs edge case (#258) #404
This file contains 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@v1 | |
- name: Install needed software | |
run: ./.github/scripts/Install.ps1 | |
env: | |
FZF_VERSION: 0.24.3 | |
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@v1 | |
- name: Install needed software | |
run: ./.github/scripts/Install.ps1 | |
env: | |
FZF_VERSION: 0.24.3 | |
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@v1 | |
- name: Install needed software | |
run: ./.github/scripts/Install.ps1 | |
env: | |
FZF_VERSION: 0.24.3 | |
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 | |