diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a4534c8..32596f8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,9 +13,16 @@ jobs: needs: ruby-versions name: build (${{ matrix.ruby }} / ${{ matrix.os }}) strategy: + fail-fast: false matrix: ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }} - os: [ ubuntu-latest, macos-13 ] + os: [ ubuntu-latest, macos-latest ] + exclude: + - os: macos-latest + ruby: "2.4" + environment: production + - os: macos-latest + ruby: "2.5" runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4