Skip to content

Run Ruby 1.9.3 and JRuby 9.1-9.2 CI on Ubuntu 22.04 #303

Run Ruby 1.9.3 and JRuby 9.1-9.2 CI on Ubuntu 22.04

Run Ruby 1.9.3 and JRuby 9.1-9.2 CI on Ubuntu 22.04 #303

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: read
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ubuntu-latest

Check failure on line 18 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 18, Col: 13): Unexpected value 'ubuntu-latest'
ruby: [ "2.0.0", 2.1, 2.3, 2.4, 2.5, 2.6, 2.7, "3.0", 3.1, 3.2, 3.3, 3.4, jruby-9.3, jruby-9.4 ]
include:
- { os: ubuntu-22.04, ruby: "1.9.3" }
- { os: ubuntu-22.04, ruby: jruby-9.1 }
- { os: ubuntu-22.04, ruby: jruby-9.2 }
name: ${{ matrix.ruby }}
env:
BUNDLE_GEMFILE: .ci.gemfile
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake spec_ci