From 70e4a3d4201a34c771ef7604add134c7a157dca1 Mon Sep 17 00:00:00 2001 From: Mike Perham Date: Fri, 28 Aug 2020 13:20:51 -0700 Subject: [PATCH] rename, add rubies --- .github/workflows/{ruby.yml => ci.yml} | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) rename .github/workflows/{ruby.yml => ci.yml} (62%) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ci.yml similarity index 62% rename from .github/workflows/ruby.yml rename to .github/workflows/ci.yml index 8bdb2ab4..f245c252 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ci.yml @@ -1,11 +1,4 @@ -# This workflow uses actions that are not certified by GitHub. -# They are provided by a third-party and are governed by -# separate terms of service, privacy policy, and support -# documentation. -# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake -# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby - -name: Ruby +name: CI on: push: @@ -36,7 +29,7 @@ jobs: # change this to (see https://github.com/ruby/setup-ruby#versioning): uses: ruby/setup-ruby@v1 with: - ruby-version: 2.6 + ruby-version: [2.5, 2.6, 2.7] - name: Install dependencies run: bundle install - name: Run tests