forked from roman/rots
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
51 changed files
with
2,338 additions
and
363 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# These are supported funding model platforms | ||
|
||
buy_me_a_coffee: pboling | ||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry | ||
github: [pboling] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] | ||
issuehunt: pboling # Replace with a single IssueHunt username | ||
ko_fi: pboling # Replace with a single Ko-fi username | ||
liberapay: pboling # Replace with a single Liberapay username | ||
open_collective: # Replace with a single Open Collective username | ||
patreon: galtzo # Replace with a single Patreon username | ||
polar: pboling | ||
thanks_dev: gh/pboling | ||
tidelift: rubygems/rots # Replace with a single Tidelift platform-name/package-name e.g., npm/babel |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: bundler | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
open-pull-requests-limit: 10 | ||
ignore: | ||
- dependency-name: "rubocop-lts" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Ancient (EOL) Rubies | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
tags: | ||
- '!*' # Do not execute on tags | ||
pull_request: | ||
branches: | ||
- '*' | ||
# Allow manually triggering the workflow. | ||
workflow_dispatch: | ||
|
||
# Cancels all previous workflow runs for the same branch that have not yet completed. | ||
concurrency: | ||
# The concurrency group contains the workflow name and the branch name. | ||
group: "${{ github.workflow }}-${{ github.ref }}" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
name: Specs - Ruby ${{ matrix.ruby }}${{ matrix.name_extra || '' }} | ||
if: "!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')" | ||
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps | ||
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
gemfile: | ||
# Skips the gemspec, to avoid the modern development tools which can't be installed on ancient Rubies. | ||
- ancient | ||
ruby: | ||
- "2.3" | ||
- "2.4" | ||
- "2.5" | ||
- "2.6" | ||
- "2.7" | ||
runs-on: ubuntu-22.04 | ||
continue-on-error: ${{ matrix.experimental || endsWith(matrix.ruby, 'head') }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup Ruby & RubyGems | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: "${{ matrix.ruby }}" | ||
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | ||
- name: Run tests | ||
run: bundle exec rake test |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# For most projects, this workflow file will not need changing; you simply need | ||
# to commit it to your repository. | ||
# | ||
# You may wish to alter this file to override the set of languages analyzed, | ||
# or to provide custom queries or build logic. | ||
# | ||
# ******** NOTE ******** | ||
# We have attempted to detect the languages in your repository. Please check | ||
# the `language` matrix defined below to confirm you have the correct set of | ||
# supported CodeQL languages. | ||
# | ||
name: "CodeQL" | ||
|
||
on: | ||
push: | ||
branches: [ main, "*-stable" ] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: [ main, "*-stable" ] | ||
schedule: | ||
- cron: '35 1 * * 5' | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-latest | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [ 'ruby' ] | ||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ] | ||
# Learn more about CodeQL language support at https://git.io/codeql-language-support | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v3 | ||
with: | ||
languages: ${{ matrix.language }} | ||
# If you wish to specify custom queries, you can do so here or in a config file. | ||
# By default, queries listed here will override any specified in a config file. | ||
# Prefix the list here with "+" to use these queries and those in the config file. | ||
# queries: ./path/to/local/query, your-org/your-repo/queries@main | ||
|
||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java). | ||
# If this step fails, then you should remove it and run the build manually (see below) | ||
- name: Autobuild | ||
uses: github/codeql-action/autobuild@v3 | ||
|
||
# ℹ️ Command-line programs to run using the OS shell. | ||
# 📚 https://git.io/JvXDl | ||
|
||
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines | ||
# and modify them (or add more) to build your code if your project | ||
# uses a compiled language | ||
|
||
#- run: | | ||
# make bootstrap | ||
# make release | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v3 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
name: Code Coverage | ||
|
||
env: | ||
K_SOUP_COV_MIN_BRANCH: 57 | ||
K_SOUP_COV_MIN_LINE: 81 | ||
K_SOUP_COV_MIN_HARD: true | ||
K_SOUP_COV_DO: true | ||
K_SOUP_COV_COMMAND_NAME: "RSpec Coverage" | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
tags: | ||
- '!*' # Do not execute on tags | ||
pull_request: | ||
branches: | ||
- '*' | ||
# Allow manually triggering the workflow. | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
|
||
# Cancels all previous workflow runs for the same branch that have not yet completed. | ||
concurrency: | ||
# The concurrency group contains the workflow name and the branch name. | ||
group: "${{ github.workflow }}-${{ github.ref }}" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
name: Specs with Coverage - Ruby ${{ matrix.ruby }} ${{ matrix.name_extra || '' }} | ||
if: "!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')" | ||
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps | ||
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
experimental: [false] | ||
rubygems: | ||
- latest | ||
bundler: | ||
- latest | ||
gemfile: | ||
- coverage | ||
ruby: | ||
- "3.3" | ||
|
||
steps: | ||
- uses: amancevice/setup-code-climate@v2 | ||
name: CodeClimate Install | ||
if: ${{ github.event_name != 'pull_request' }} | ||
with: | ||
cc_test_reporter_id: ${{ secrets.CC_TEST_REPORTER_ID }} | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Ruby & RubyGems | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: "${{ matrix.ruby }}" | ||
rubygems: "${{ matrix.rubygems }}" | ||
bundler: "${{ matrix.bundler }}" | ||
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | ||
|
||
- name: CodeClimate Pre-build Notification | ||
run: cc-test-reporter before-build | ||
if: ${{ github.event_name != 'pull_request' }} | ||
continue-on-error: ${{ matrix.experimental != 'false' }} | ||
|
||
- name: Run RSpec tests | ||
run: | | ||
bundle exec rspec | ||
- name: CodeClimate Post-build Notification | ||
run: cc-test-reporter after-build | ||
if: ${{ github.event_name != 'pull_request' }} | ||
continue-on-error: ${{ matrix.experimental != 'false' }} | ||
|
||
- name: Code Coverage Summary Report | ||
uses: irongut/[email protected] | ||
if: ${{ github.event_name == 'pull_request' }} | ||
with: | ||
filename: ./coverage/coverage.xml | ||
badge: true | ||
fail_below_min: true | ||
format: markdown | ||
hide_branch_rate: false | ||
hide_complexity: true | ||
indicators: true | ||
output: both | ||
thresholds: '81 57' | ||
continue-on-error: ${{ matrix.experimental != 'false' }} | ||
|
||
- name: Add Coverage PR Comment | ||
uses: marocchino/sticky-pull-request-comment@v2 | ||
if: ${{ github.event_name == 'pull_request' }} | ||
with: | ||
recreate: true | ||
path: code-coverage-results.md | ||
continue-on-error: ${{ matrix.experimental != 'false' }} | ||
|
||
- name: Coveralls | ||
uses: coverallsapp/github-action@master | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
continue-on-error: ${{ matrix.experimental != 'false' }} | ||
|
||
- name: Upload results to Codecov | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Dependency Review Action | ||
# | ||
# This Action will scan dependency manifest files that change as part of a Pull Request, surfacing known-vulnerable versions of the packages declared or updated in the PR. Once installed, if the workflow run is marked as required, PRs introducing known-vulnerable packages will be blocked from merging. | ||
# | ||
# Source repository: https://github.com/actions/dependency-review-action | ||
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement | ||
name: 'Dependency Review' | ||
on: [pull_request] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
dependency-review: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 'Checkout Repository' | ||
uses: actions/checkout@v4 | ||
- name: 'Dependency Review' | ||
uses: actions/dependency-review-action@v4 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: Ruby HEAD Support | ||
|
||
env: | ||
K_SOUP_COV_DO: false | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
tags: | ||
- '!*' # Do not execute on tags | ||
pull_request: | ||
branches: | ||
- '*' | ||
# Allow manually triggering the workflow. | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
|
||
# Cancels all previous workflow runs for the same branch that have not yet completed. | ||
concurrency: | ||
# The concurrency group contains the workflow name and the branch name. | ||
group: "${{ github.workflow }}-${{ github.ref }}" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
name: Specs - Ruby ${{ matrix.ruby }}${{ matrix.name_extra || '' }} | ||
runs-on: ubuntu-latest | ||
if: "!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')" | ||
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps | ||
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
experimental: [true] | ||
rubygems: | ||
- latest | ||
bundler: | ||
- latest | ||
gemfile: | ||
- vanilla | ||
ruby: | ||
- "ruby-head" | ||
# NOTE: jruby-head is still @ Ruby 3.1 compat | ||
- "jruby-head" | ||
# NOTE: truffleruby-head is still @ Ruby 3.1 compat | ||
- "truffleruby-head" | ||
continue-on-error: ${{ matrix.experimental || endsWith(matrix.ruby, 'head') }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup Ruby & RubyGems | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: "${{ matrix.ruby }}" | ||
rubygems: "${{ matrix.rubygems }}" | ||
bundler: "${{ matrix.bundler }}" | ||
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | ||
- name: Run tests | ||
run: bundle exec rake test |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Ruby - Style | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
tags: | ||
- '!*' # Do not execute on tags | ||
pull_request: | ||
branches: | ||
- '*' | ||
# Allow manually triggering the workflow. | ||
workflow_dispatch: | ||
|
||
jobs: | ||
rubocop: | ||
name: RuboCop - Ruby ${{ matrix.ruby }}${{ matrix.name_extra || '' }} | ||
if: "!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
experimental: [false] | ||
rubygems: | ||
- latest | ||
bundler: | ||
- latest | ||
gemfile: | ||
- style | ||
ruby: | ||
- "3.3" | ||
runs-on: ubuntu-latest | ||
continue-on-error: ${{ matrix.experimental || endsWith(matrix.ruby, 'head') }} | ||
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps | ||
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Setup Ruby & RubyGems | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: "${{ matrix.ruby }}" | ||
rubygems: "${{ matrix.rubygems }}" | ||
bundler: "${{ matrix.bundler }}" | ||
bundler-cache: true | ||
- name: Run RuboCop | ||
run: bundle exec rake rubocop_gradual:check |
Oops, something went wrong.