From 354d6af1f45a96dca41b957e6a93e07d18c6671b Mon Sep 17 00:00:00 2001 From: Emil Tin Date: Thu, 5 Sep 2024 08:57:57 +0200 Subject: [PATCH] remove ruby version from matrix --- .github/workflows/rspec.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rspec.yaml b/.github/workflows/rspec.yaml index 88f4fb1..5d95184 100644 --- a/.github/workflows/rspec.yaml +++ b/.github/workflows/rspec.yaml @@ -9,13 +9,11 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-latest] - # Due to https://github.com/actions/runner/issues/849, we have to use quotes - ruby: ['3.3'] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: - ruby-version: ${{ matrix.ruby }} - bundler-cache: true # runs 'bundle install' and caches installed gems automatically + ruby-version: 3.3 + bundler-cache: true - run: bundle exec rspec -f d