From 2db25b5c338638bdd207387d42ab4ee2fce3e77b Mon Sep 17 00:00:00 2001 From: Joe Rafaniello Date: Tue, 13 Feb 2024 10:38:49 -0500 Subject: [PATCH] Test with ruby 3.1 and 3.0 --- .github/workflows/ci.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6a53bc8..ac09227 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,11 +1,10 @@ +--- name: CI - on: push: pull_request: schedule: - - cron: '0 0 * * 0' - + - cron: 0 0 * * 0 jobs: ci: runs-on: ubuntu-latest @@ -16,12 +15,13 @@ jobs: - '2.6' - '2.7' - '3.0' + - '3.1' steps: - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: ${{ matrix.ruby-version }} + ruby-version: "${{ matrix.ruby-version }}" bundler-cache: true timeout-minutes: 30 - name: Run tests