From 2cee67fe046e96763bd9e14809410828a430f0c9 Mon Sep 17 00:00:00 2001 From: Peter Postma Date: Wed, 18 Oct 2023 10:10:52 +0200 Subject: [PATCH] Add Ruby head and remove 2.6. --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index fdc2210..fa9a0c2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,8 +2,7 @@ name: CI on: push: - branches: - - master + branches: [master] pull_request: jobs: @@ -11,11 +10,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2'] + ruby-version: ['2.7', '3.0', '3.1', '3.2', 'head'] steps: - - uses: actions/checkout@v2 - - uses: ruby/setup-ruby@v1 + - uses: actions/checkout@v4 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true