Sha256: 1df08a66424292a5328eea091235f20f27d194fde3f1d731c0aba951ab4055f6
Contents?: true
Size: 1.38 KB
Versions: 2
Compression:
Stored size: 1.38 KB
Contents
name: Generator specs on: push: branches: - 'main' pull_request: concurrency: # Pushing new changes to a branch will cancel any in-progress CI runs group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true jobs: test: name: Generator specs runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest] ruby: ['2.7', '3.0', '3.1', '3.2', '3.3'] gemfile: - gemfiles/Gemfile-rails.6.0.x - gemfiles/Gemfile-rails.6.1.x - gemfiles/Gemfile-rails.7.0.x - gemfiles/Gemfile-rails.7.1.x # Uncomment the following line only to ensure compatibility with the # upcomming Rails versions, maybe before a release. #- gemfiles/Gemfile-rails-edge exclude: - ruby: '3.1' gemfile: gemfiles/Gemfile-rails.6.0.x - ruby: '3.2' gemfile: gemfiles/Gemfile-rails.6.0.x - ruby: '3.3' gemfile: gemfiles/Gemfile-rails.6.0.x - ruby: '3.3' gemfile: gemfiles/Gemfile-rails.6.1.x env: BUNDLE_GEMFILE: ${{ matrix.gemfile }} steps: - uses: actions/checkout@v4 with: persist-credentials: false - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - run: bundle exec rake run_spec:generator
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
shakapacker-8.0.2 | .github/workflows/generator.yml |
shakapacker-8.0.1 | .github/workflows/generator.yml |