Skip to content

Commit

Permalink
adding ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mwrock authored Apr 11, 2022
1 parent 5987961 commit 5439d37
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: build

"on":
pull_request:
push:
branches:
- master

jobs:
unit:
strategy:
fail-fast: false
matrix:
os: [ubuntu-18.04, windows-2019]
ruby: ['2.6', '2.7', '3.0', '3.1']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake

0 comments on commit 5439d37

Please sign in to comment.