.github/workflows/ci.yml in waterdrop-2.6.14 vs .github/workflows/ci.yml in waterdrop-2.7.0.alpha1

- old
+ new

@@ -20,11 +20,10 @@ ruby: - '3.3' - '3.2' - '3.1' - '3.0' - - '2.7' include: - ruby: '3.3' coverage: 'true' steps: - uses: actions/checkout@v4 @@ -47,28 +46,18 @@ run: | sleep 15 - name: Install latest bundler run: | - if [[ "$(ruby -v | awk '{print $2}')" == 2.7.8* ]]; then - gem install bundler -v 2.4.22 --no-document - gem update --system 3.4.22 --no-document - else - gem install bundler --no-document - gem update --system --no-document - fi + gem install bundler --no-document + gem update --system --no-document bundle config set without 'tools benchmarks docs' - name: Bundle install run: | bundle config set without development - - if [[ "$(ruby -v | awk '{print $2}')" == 2.7.8* ]]; then - BUNDLER_VERSION=2.4.22 bundle install --jobs 4 --retry 3 - else - bundle install --jobs 4 --retry 3 - fi + bundle install --jobs 4 --retry 3 - name: Run all tests env: GITHUB_COVERAGE: ${{matrix.coverage}} run: bundle exec rspec