Skip to content

Exclude Ruby 2.5 and 2.4 from macos-latest that is macos-14 #313

Exclude Ruby 2.5 and 2.4 from macos-latest that is macos-14

Exclude Ruby 2.5 and 2.4 from macos-latest that is macos-14 #313

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: build (${{ matrix.ruby }} / ${{ matrix.os }})
strategy:
matrix:
ruby: [ 3.1, '3.0', 2.7, 2.6, 2.5, 2.4, head, truffleruby ]
os: [ ubuntu-latest, macos-latest ]
eclude:

Check failure on line 12 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 12, Col: 7): Unexpected value 'eclude'
- ruby: 2.4
os: macos-latest
- ruby: 2.5
os: macos-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: bundle install --jobs 4 --retry 3
- name: Run test
run: rake test