Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

💎 1.3.2

💎 1.3.2 #5

Workflow file for this run

name: CI
on:
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- if: "${{ contains(github.event.pull_request.title, '[skip test]') }}"
name: Skip test
shell: bash
run: |
echo "Skipping test workflow because commit message contains `[skip test]`"
exit 0
- uses: actions/checkout@v4
- name: Set up Ruby
uses: yettoapp/actions/setup-languages@main
with:
ruby: true
- name: Run tests
run: bundle exec rake test