From 17f6072cb16a39267bd74763c70dbe70680e1aef Mon Sep 17 00:00:00 2001 From: Jean Luis Urena Date: Tue, 9 Jul 2024 17:41:22 -0400 Subject: [PATCH] [ISSUE-68] Fix github ci for cross-repos --- .github/workflows/ruby.yml | 47 +++++++++++++++++++++++--------------- Rakefile | 3 ++- 2 files changed, 30 insertions(+), 20 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index da77e42..ed0301c 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -5,28 +5,28 @@ # 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 -name: Code Coverage - -on: [push, workflow_dispatch, pull_request] - +name: Code Guard +on: + pull_request: + workflow_dispatch: +concurrency: + group: ${{ github.ref }}-${{ github.workflow }} + cancel-in-progress: true permissions: - contents: read - + checks: write + contents: write jobs: test: - permissions: - checks: write - contents: write runs-on: ubuntu-20.04 strategy: matrix: - rails-version: ["6.1", "7.1"] + rails-version: ['6.1', '7.1'] steps: - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 3.0 + ruby-version: '3.0' - name: Install dependencies run: bundle install env: @@ -34,11 +34,20 @@ jobs: DEBUG: true - name: Run tests run: bundle exec rake - - name: Code Coverage - uses: joshmfrankel/simplecov-check-action@main - with: - check_job_name: Code Coverage - github_token: ${{ secrets.GITHUB_TOKEN }} - minimum_suite_coverage: 100 - - name: Lint - uses: standardrb/standard-ruby-action@v1 + # Doesn't work. Needs secret or repo setting update + # - name: Code Coverage + # if: matrix.rails-version == '7.1' + # uses: joshmfrankel/simplecov-check-action@1.0.0 + # with: + # check_job_name: Code Coverage + # minimum_suite_coverage: 100 + # github_token: ${{ secrets.GITHUB_TOKEN }} + # Doesn't work. Needs secret or repo setting update? + # lint: + # needs: [test] + # runs-on: ubuntu-20.04 + # steps: + # - name: Lint + # uses: standardrb/standard-ruby-action@v1 + # with: + # ruby-version: '3.0' diff --git a/Rakefile b/Rakefile index 8f2b9cd..93aa5a5 100644 --- a/Rakefile +++ b/Rakefile @@ -1,7 +1,8 @@ require "bundler/gem_tasks" require "rspec/core/rake_task" +require "standard/rake" desc "Run all examples" RSpec::Core::RakeTask.new(:spec) -task default: :spec +task default: [:spec, :standard]