summaryrefslogtreecommitdiff
path: root/lib/bundler/templates/newgem/github/workflows/main.yml.tt
blob: 654978033fad5d9a2366df1459e9ea4ad1e66c5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: Ruby

on: [push,pull_request]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: <%= RUBY_VERSION %>
        bundler-cache: true
    - name: Run the default task
      run: bundle exec rake