A collegue shared this code snippet that helps making sure your database/models changes don't break your seeds:

RSpec.describe 'db:seed' do
  it 'works' do
    expect { Rails.application.load_seed }.to_not raise_error
  end
end