Skip to content

Commit

Permalink
Fix!
Browse files Browse the repository at this point in the history
  • Loading branch information
dfaranha committed May 9, 2024
1 parent 7cda359 commit a8bea16
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/gmp-sec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,16 @@ jobs:
config:
- {
name: "Windows Latest - MinGW",
artifact: "windows-mingw.tar.xz",
os: windows-latest,
cc: "gcc"
}
- {
name: "Ubuntu Latest - GCC",
artifact: "linux-gcc.tar.xz",
os: ubuntu-latest,
cc: "gcc",
}
- {
name: "Ubuntu Latest - Clang",
artifact: "linux-clang.tar.xz",
os: ubuntu-latest,
cc: "clang",
}
Expand All @@ -39,6 +36,11 @@ jobs:
os: macos-latest,
cc: "clang",
}

defaults:
run:
shell: ${{ matrix.config.os == 'windows-latest' && 'msys2 {0}' || 'bash' }}

steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit a8bea16

Please sign in to comment.