Skip to content

Commit c68220d

Browse files
committed
CI: exclude macOS from gem test
It is because of the difficulty in assuming a macOS shell behavior. `set -e` and `(! ...)` does not work as expected on macOS. Signed-off-by: Daijiro Fukuda <fukuda@clear-code.com>
1 parent 6dd76cc commit c68220d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
ruby: ['3.4', '3.3', '3.2']
33-
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
33+
# macOS is excluded because of the difficulty in assuming a macOS shell behavior.
34+
os: ['ubuntu-latest', 'windows-latest']
3435
runs-on: ${{ matrix.os }}
3536
name: Gem with Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
3637
steps:

0 commit comments

Comments
 (0)