Skip to content

Commit 2589b5a

Browse files
committed
Move to github actions testing windows and Macos
1 parent efce52e commit 2589b5a

File tree

2 files changed

+27
-69
lines changed

2 files changed

+27
-69
lines changed

.circleci/config.yml

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

.github/workflows/test.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Ruby Test
2+
3+
jobs:
4+
test:
5+
name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
6+
runs-on: ${{ matrix.os }}
7+
strategy:
8+
fail-fast: false
9+
matrix:
10+
os: [ubuntu-latest, macos-latest, windows-latest]
11+
ruby: [2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, 3.4]
12+
13+
steps:
14+
- name: Checkout repo
15+
uses: actions/checkout@v4
16+
17+
- name: Set up Ruby
18+
uses: ruby/setup-ruby@v1
19+
with:
20+
ruby-version: ${{ matrix.ruby }}
21+
bundler-cache: true
22+
23+
- name: Install dependencies
24+
run: bundle install --with development
25+
26+
- name: Run tests
27+
run: bundle exec rake spec

0 commit comments

Comments
 (0)