diff --git a/.github/workflows/lint-unit.yml b/.github/workflows/lint-unit.yml index e4e8ea349..a434dbf5f 100644 --- a/.github/workflows/lint-unit.yml +++ b/.github/workflows/lint-unit.yml @@ -30,7 +30,7 @@ jobs: matrix: # we need to test the Ruby versions of the products we release RMT for, # those are: SLE15 (2.5.8, 2.5.9) - ruby-version: [ '2.5.9'] + ruby-version: ['2.5.8', '2.5.9'] # skipping Ruby3 tests for now, because RMT isn't Ruby3 compatible yet, and the failing # tests confuse the team. # ruby-version: ['2.5.8', '2.5.9', '3.0.3'] @@ -93,9 +93,12 @@ jobs: ruby ci/check-version-matches.rb echo "::endgroup::" - - name: Export coverage report - uses: actions/upload-artifact@v4 - if: always() - with: - name: coverage - path: ${{ github.workspace }}/coverage \ No newline at end of file + - name: Run PubCloud engines tests + run: | + bundle exec rake test:engines + + - name: Run version checks + run: | + echo "::group::Version verification checks" + ruby ci/check-version-matches.rb + echo "::endgroup::"