Skip to content

Move legacy Ruby builds from CircleCI to GitHub Actions #5

Move legacy Ruby builds from CircleCI to GitHub Actions

Move legacy Ruby builds from CircleCI to GitHub Actions #5

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
spec_legacy_ruby_19:
name: "Test / Ruby 1.9 / SSHKit ${{ matrix.sshkit }}"
runs-on: ubuntu-20.04
strategy:
matrix:
sshkit: ["1.6.1", "1.7.1"]
env:
sshkit: ${{ matrix.sshkit }}
RUBYOPT: "-Ku"
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "1.9"
rubygems: "2.6.9"
bundler-cache: true
- run: bundle exec rake test
spec_legacy_ruby:
name: "Test / Ruby ${{ matrix.ruby }} / SSHKit ${{ matrix.sshkit }}"
runs-on: ubuntu-20.04
strategy:
matrix:
ruby: ["2.0", "2.0", "2.1", "2.2", "2.3"]
sshkit: ["1.6.1", "1.7.1", "master"]
env:
sshkit: ${{ matrix.sshkit }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake test