diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1994eb3..d65a852 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,8 +11,11 @@ jobs: fail-fast: false matrix: ruby: ['3.2', '3.3', '3.4'] - rails: ['7.1.0', '7.2.0'] + rails: ['7.1.0', '7.2.0', '8.0.0'] activeadmin: ['3.2.0', '3.3.0', '3.4.0', '3.5.1'] + exclude: + - rails: '8.0.0' + activeadmin: '3.2.0' env: RAILS: ${{ matrix.rails }} AA: ${{ matrix.activeadmin }} diff --git a/spec/support/rails_template.rb b/spec/support/rails_template.rb index f12c5ac..682c1c7 100644 --- a/spec/support/rails_template.rb +++ b/spec/support/rails_template.rb @@ -1,3 +1,5 @@ +create_file "app/assets/config/manifest.js", skip: true + generate :model, 'author name:string{10}:uniq last_name:string birthday:date --force' generate :model, 'post title:string:uniq body:text author:references --force'