Skip to content

Add author command

Add author command #15

Workflow file for this run

name: CI
on:
push:
branches: main
pull_request:
jobs:
tests:
strategy:
matrix:
platform: ["ubuntu-latest", "macos-latest"]
ruby: [3.0, 3.1, 3.2, 3.3]
runs-on: ${{ matrix.platform }}
steps:
- name: Set up Git repository
uses: actions/checkout@main
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run linter
run: bundle exec standardrb
- name: Run tests
run: bundle exec rspec