Skip to content

Code Quality

Code Quality #42

Workflow file for this run

# 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.
name: "Code Quality"
on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
schedule:
- cron: '44 2 * * 2'
jobs:
code-quality:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
with:
ruby-version: 3.2.0
- name: Install dependencies
run: bundle install
- name: Unit Testing
run: rake spec
- name: Rubocop run
run: rake rubocop
- name: Rubocop:md run
run: rake rubocop:md