Skip to content

Add examples to README #6

Add examples to README

Add examples to README #6

Workflow file for this run

name: Tests and linter
on:
push:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ["4.0"]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rspec
- name: Run Linter
run: bundle exec rubocop