Skip to content

Update CHANGELOG.md #59

Update CHANGELOG.md

Update CHANGELOG.md #59

Workflow file for this run

name: Continous Integration
on:
push:
branches:
- 'feature/*'
- 'fix/*'
- 'main'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
bundler-cache: true
- name: Run Integration Test
run: |
gem install bundler
bundle install
bundle exec rspec