Skip to content

Commit

Permalink
✨ Github 🎬
Browse files Browse the repository at this point in the history
  • Loading branch information
LeipeLeon committed Sep 10, 2024
1 parent 7d9cc7b commit deca0a0
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@

name: Test

on:
workflow_dispatch:
pull_request:
push:
branches:
- main
- master
- develop

jobs:
spec:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
fail-fast: false
matrix:
ruby:
- "2.1"
- "2.2"
- "2.3"
- "2.4"
- "2.5"
- "2.6"
- "2.7"
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake

0 comments on commit deca0a0

Please sign in to comment.