Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 18 additions & 24 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,21 @@
# name: Ruby
name: Ruby

# on:
# push:
# branches:
# - main
on:
pull_request:
branches: [ "main" ]

# pull_request:
permissions:
contents: read

# jobs:
# build:
# runs-on: ubuntu-latest
# name: Ruby ${{ matrix.ruby }}
# strategy:
# matrix:
# ruby:
# - '3.0.6'

# steps:
# - uses: actions/checkout@v2
# - name: Set up Ruby
# uses: ruby/setup-ruby@v1
# with:
# ruby-version: ${{ matrix.ruby }}
# bundler-cache: true
# - name: Run the default task
# run: bundle exec rake
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0.6
bundler-cache: true
- name: Run tests
run: bundle exec rake test