Skip to content

Commit

Permalink
[ISSUE-68] Fix github ci for cross-repos
Browse files Browse the repository at this point in the history
  • Loading branch information
jlurena committed Jul 9, 2024
1 parent a9f1ec6 commit 17f6072
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 20 deletions.
47 changes: 28 additions & 19 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,40 +5,49 @@
# 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:
TEST_RAILS_VERSION: ${{ matrix.rails-version }}
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/[email protected]
# 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'
3 changes: 2 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -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]

0 comments on commit 17f6072

Please sign in to comment.