Skip to content

Commit 93932b4

Browse files
committed
Switch to GitHub Actions for CI
1 parent 32e8815 commit 93932b4

2 files changed

Lines changed: 19 additions & 42 deletions

File tree

.circleci/config.yml

Lines changed: 0 additions & 42 deletions
This file was deleted.

.github/workflows/test.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: Test
3+
on: [push]
4+
5+
jobs:
6+
test:
7+
strategy:
8+
fail-fast: false
9+
matrix:
10+
ruby: [3.2, 3.3, 3.4]
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v5
14+
- uses: ruby/setup-ruby@v1
15+
with:
16+
ruby-version: ${{ matrix.ruby }}
17+
bundler-cache: true
18+
- name: RSpec
19+
run: bundle exec rspec

0 commit comments

Comments
 (0)