fix config.fish for macOS/homebrew #53
Workflow file for this run
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: PullRequest | |
on: | |
# push: | |
# branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ windows-latest, macos-latest ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run bootstrap.ps1 script from PR branch; | |
if: matrix.os == 'windows-latest' | |
shell: powershell | |
run: | | |
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force | |
Write-Host "skip bootstrap's repo 'clone' stage (already have correct script), start with 'setup'" | |
./bootstrap.ps1 setup -runAsAdmin | |
- name: Run bootstrap.sh script from PR branch; | |
if: matrix.os == 'macos-latest' | |
shell: bash | |
run: | | |
echo "skip bootstrap's repo 'clone' stage (already have correct script), start with 'setup'" | |
./bootstrap.sh setup |