.github/workflows/ruby.yml in gush-4.0.0 vs .github/workflows/ruby.yml in gush-4.1.0
- old
+ new
@@ -24,17 +24,20 @@
options: --entrypoint redis-server
runs-on: ubuntu-latest
strategy:
matrix:
- rails_version: ['6.1.0', '7.0', '7.1.0']
- ruby-version: ['3.0', '3.1', '3.2', '3.3']
+ rails_version: ['6.1.0', '7.0', '7.1.0', '7.2.2']
+ ruby_version: ['3.1', '3.2', '3.3', '3.4']
+ exclude:
+ - ruby_version: '3.4'
+ rails_version: '6.1.0'
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
- ruby-version: ${{ matrix.ruby-version }}
+ ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
env:
RAILS_VERSION: "${{ matrix.rails_version }}"
- name: Install Graphviz
run: sudo apt-get install graphviz