Skip to content

Commit

Permalink
test multiple msys2do calls in the same step
Browse files Browse the repository at this point in the history
  • Loading branch information
1138-4EB authored and eine committed May 20, 2020
1 parent 66aff8c commit d7e1e40
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,12 @@ jobs:
rm -rf node_modules
- name: run action
uses: ./
- name: test MSYS
- name: test
run: |
$env:MSYSTEM = 'MSYS'
msys2do ./test.sh MSYS
- name: test MINGW64
run: |
$env:MSYSTEM = 'MINGW64'
msys2do ./test.sh MINGW64
- name: test MINGW32
run: |
$env:MSYSTEM = 'MINGW32'
msys2do ./test.sh MINGW32
Expand All @@ -43,19 +39,13 @@ jobs:
rm -rf node_modules
- name: run action
uses: ./
- name: test MSYS
- name: test
shell: cmd
run: |
set MSYSTEM=MSYS
msys2do ./test.sh MSYS
- name: test MINGW64
shell: cmd
run: |
set MSYSTEM=MINGW64
msys2do ./test.sh MINGW64
- name: test MINGW32
shell: cmd
run: |
set MSYSTEM=MINGW32
msys2do ./test.sh MINGW32
Expand Down

0 comments on commit d7e1e40

Please sign in to comment.