Skip to content

Run GitHub Actions on PRs #6

Run GitHub Actions on PRs

Run GitHub Actions on PRs #6

Workflow file for this run

name: Ruby
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby 2.7
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.7
bundler-cache: true
- name: Test with Rake
run: |
bundle exec rake