Bump @rushstack/eslint-patch from 1.14.1 to 1.15.0 in /openc3-cosmos-init/plugins #4499
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This workflow uses actions that are not certified by GitHub. | |
| # They are provided by a third-party and are governed by | |
| # separate terms of service, privacy policy, and support | |
| # documentation. | |
| # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake | |
| # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby | |
| # Reference environment variables: https://docs.github.com/en/actions/reference/environment-variables | |
| name: Ruby Unit Tests | |
| # Only run on a push to main to avoid running for all the dependabot PRs | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - "**" | |
| env: | |
| RUBYOPT: --disable=frozen_string_literal | |
| RUBYGEMS_URL: https://rubygems.org | |
| jobs: | |
| unit-test: | |
| if: ${{ github.actor != 'dependabot[bot]' }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| ruby-version: ["3.3", "3.4"] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Ruby ${{ matrix.ruby-version }} | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby-version }} | |
| bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
| working-directory: openc3 | |
| - name: Run unit tests | |
| run: bundle exec rake build spec | |
| working-directory: openc3 | |
| env: | |
| OPENC3_DEVEL: ${GITHUB_WORKSPACE}/openc3 | |
| - uses: codecov/codecov-action@v5 | |
| with: | |
| directory: openc3/coverage | |
| flags: ruby-backend # See codecov.yml | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| - name: Run unit tests without extensions | |
| run: bundle exec rspec --tag no_ext | |
| working-directory: openc3 | |
| env: | |
| OPENC3_NO_EXT: 1 | |
| OPENC3_DEVEL: ${GITHUB_WORKSPACE}/openc3 | |
| - uses: codecov/codecov-action@v5 | |
| with: | |
| directory: openc3/coverage | |
| flags: ruby-backend # See codecov.yml | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| # - name: SonarQube Scan | |
| # uses: SonarSource/sonarqube-scan-action@v5 | |
| # with: | |
| # projectBaseDir: openc3 | |
| # args: > | |
| # -Dsonar.organization=openc3 | |
| # -Dsonar.projectKey=OpenC3_cosmos | |
| # -Dsonar.ruby.coverage.reportPaths=coverage/coverage.json | |
| # -Dsonar.sources=lib | |
| # -Dsonar.tests=spec | |
| # env: | |
| # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |