Initial commit

This commit is contained in:
Wilson Silva
2023-01-06 10:00:47 +07:00
commit 7fded5bb7f
18 changed files with 332 additions and 0 deletions

27
.github/workflows/main.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: Ruby
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '3.2.0'
steps:
- uses: actions/checkout@v3
- 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