.github/workflows/ruby.yml in junk_drawer-1.8.0 vs .github/workflows/ruby.yml in junk_drawer-2.0.0
- old
+ new
@@ -7,14 +7,17 @@
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
+ env:
+ BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.rails }}.gems
strategy:
matrix:
- ruby: [2.4, 2.5, 2.6, 2.7]
- postgres: [10, 11, 12, 13, 14]
- name: Ruby ${{ matrix.ruby }} x Postgres ${{ matrix.postgres }}
+ ruby: ['3.0', '3.1', '3.2']
+ postgres: [12, 13, 14]
+ rails: ['7.0']
+ name: Ruby ${{ matrix.ruby }} x Postgres ${{ matrix.postgres }} x Rails ${{ matrix.rails }}
services:
postgres:
image: postgres:${{ matrix.postgres }}
env: