Skip to content

Commit

Permalink
Update windows.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref authored Sep 22, 2024
1 parent d9c40a8 commit 9ea30b6
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,23 @@ jobs:
runs-on: windows-latest

steps:
- name: Run a multi-line script
- name: env
shell: bash
run: |
env
- name: Run a multi-line script
- name: env (bash)
shell: bash
run: |
/c/msys64/usr/bin/bash -eo pipefail -c 'env'
- name: env (norc)
shell: bash
run: |
PATH="/c/msys64/mingw64/bin:/c/msys64/usr/local/bin:/c/msys64/usr/bin:$PATH"
/c/msys64/usr/bin/bash --norc -eo pipefail -c 'env'
- name: Run a multi-line script
- name: env (noprofile, norc)
shell: bash
run: |
PATH="/c/msys64/mingw64/bin:/c/msys64/usr/local/bin:/c/msys64/usr/bin:$PATH"
Expand Down

0 comments on commit 9ea30b6

Please sign in to comment.