Skip to content

Commit

Permalink
Create ruby.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sylhare authored Jul 17, 2021
1 parent 9f663db commit 1b5a21b
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Gem Install

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:

runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.6', '2.7', '3.0']

steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Type-on-strap
continue-on-error: true
run: gem install type-on-strap --source "https://rubygems.pkg.github.com/sylhare"
- name: Vermelinho
continue-on-error: true
run: gem install vermelinho --source "https://rubygems.pkg.github.com/sylhare"

0 comments on commit 1b5a21b

Please sign in to comment.