Skip to content

Updates class documentation #7

Updates class documentation

Updates class documentation #7

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
jobs:
markdownChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Markdown Checker
uses: DavidAnson/markdownlint-cli2-action@v19
with:
globs: |
README.md
docs/*.md
linkChecker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Link Checker
id: lychee
uses: lycheeverse/lychee-action@v2
with:
args: --no-progress --include-fragments --verbose '*.md'
fail: true
failIfEmpty: true
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '3.4.3'
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run the default task
run: bundle exec rake