Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sshaw committed Oct 29, 2024
1 parent 9479fc3 commit 8fae814
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on:
- push
- pull_request

jobs:
test:
runs-on: ubuntu-latest
env:
BC_ACCESS_TOKEN: "Foo"
BC_STORE_HASH: "Bar"
strategy:
matrix:
ruby: ['3.2', '3.1', '3.0', '2.7', '2.6', '2.5']

steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true

- run: bundle exec rake

0 comments on commit 8fae814

Please sign in to comment.