.github/workflows/ci.yml in modulesync-2.6.0 vs .github/workflows/ci.yml in modulesync-2.7.0

- old
+ new

@@ -19,20 +19,18 @@ uses: ruby/setup-ruby@v1 with: ruby-version: '3.1' bundler-cache: true - name: Run linter - run: bundle exec rubocop --format github + run: bundle exec rake rubocop test: needs: rubocop runs-on: ubuntu-latest strategy: fail-fast: false matrix: include: - - ruby: "2.5" - - ruby: "2.6" - ruby: "2.7" - ruby: "3.0" - ruby: "3.1" codecov: "yes" - ruby: "3.2" @@ -48,10 +46,10 @@ - name: Run unit tests run: bundle exec rake spec - name: Run behavior tests run: bundle exec cucumber - name: Build gem - run: gem build *.gemspec + run: gem build --verbose *.gemspec tests: needs: - rubocop - test runs-on: ubuntu-latest