chore: upgrade to Ruby SDK v0.2.0 #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Checks | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
types: | |
- opened | |
- synchronize # when a PR is updated | |
- reopened # when a PR is reopened | |
- ready_for_review # when a PR is ready for review | |
- review_requested # when a PR is requested for review | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Install | |
run: bundle install | |
- name: Run the application | |
run: bundle exec ruby app.rb |