.github/workflows/ruby.yml in cased-ruby-0.7.1 vs .github/workflows/ruby.yml in cased-ruby-0.8.0
- old
+ new
@@ -9,33 +9,22 @@
strategy:
matrix:
ruby:
- "2.7"
- "3.0"
- lockfile:
- - "Gemfile.lock"
- - "Gemfile-activesupport-7.lock"
- exclude:
- - ruby: "2.5"
- lockfile: "Gemfile-activesupport-7.lock"
- - ruby: "2.6"
- lockfile: "Gemfile-activesupport-7.lock"
+ - "3.1"
- name: Ruby ${{ matrix.ruby }} Gem lockfile ${{ matrix.lockfile }} test
+ name: Ruby ${{ matrix.ruby }} test
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- - uses: actions/setup-ruby@v1
+ - uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
+ bundler-cache: false
- - name: Override Gemfile.lock to test multiple gem dependencies
- run: cp -f gemfile-locks/${{ matrix.lockfile }} Gemfile.lock
-
- name: Install dependencies
- run: |
- gem install bundler
- bundle install --local
+ run: bundle install
- name: Run Tests
run: |
bundle exec rake test