Ru-b2-SQL-Backups/.github/workflows/ruby.yml

31 lines
614 B
YAML
Raw Normal View History

2023-02-28 11:11:08 -07:00
name: Ruby
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
2023-05-03 14:02:34 -06:00
ruby-version: ['3.0', '3.1', '2.7']
2023-02-28 11:11:08 -07:00
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@ee2113536afb7f793eed4ce60e8d3b26db912da4 # v1.127.0
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: rake
2023-05-03 14:02:34 -06:00
- name: Rubocop
run: rubocop