.github/workflows/test.yml in extralite-bundle-2.4 vs .github/workflows/test.yml in extralite-bundle-2.5
- old
+ new
@@ -1,6 +1,6 @@
-name: Tests
+name: Tests (extralite)
on: [push, pull_request]
concurrency:
group: tests-${{ format('{0}-{1}', github.head_ref || github.run_number, github.job) }}
@@ -10,11 +10,11 @@
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
- ruby: ['2.7', '3.0', '3.1', '3.2', '3.3']
+ ruby: ['3.0', '3.1', '3.2', '3.3']
name: >-
${{matrix.os}}, ${{matrix.ruby}}
runs-on: ${{matrix.os}}
@@ -26,15 +26,5 @@
bundler-cache: true # 'bundle install' and cache
- name: Compile C-extension
run: bundle exec rake compile
- name: Run tests
run: bundle exec rake test
- - name: Build bundled gem
- run: bundle exec rake build_bundled
- - name: Run tests with bundled gem
- run: |
- echo Installing extralite-bundle...
- bundle config --local frozen false
- mv Gemfile-bundle Gemfile
- bundle install
- echo Running tests...
- bundle exec rake test