From 0d7bcb9c20d6e34a96af3ed586a1e89ad24e92a6 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Mon, 27 Mar 2023 12:10:47 +0900 Subject: [PATCH] Exclude Ruby 2.4-2.6 from windows-latest --- .github/workflows/test.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 95b58c4..a0ee840 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,6 +16,13 @@ jobs: matrix: ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }} os: [ubuntu-latest, macos-latest, windows-latest] + exclude: + - os: windows-latest + ruby: 2.4 + - os: windows-latest + ruby: 2.5 + - os: windows-latest + ruby: 2.6 runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3