Skip to content

Commit

Permalink
Fixed CI (#7)
Browse files Browse the repository at this point in the history
* added CI

* fixed workflow
  • Loading branch information
Pedro Augusto authored Feb 29, 2024
1 parent 8a38d2b commit 9ba2a2e
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Ruby

on:
push:
branches:
- master

pull_request:

jobs:
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- '3.2.2'

steps:
- uses: actions/checkout@v4
- 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

0 comments on commit 9ba2a2e

Please sign in to comment.