Skip to content

Commit d11dbb3

Browse files
committed
Move tests to GithubActions
All tests ported except for YJIT ``` - run: echo "export RUBY_YJIT_ENABLE=1" >> $BASH_ENV ```
1 parent 7551b22 commit d11dbb3

File tree

2 files changed

+33
-91
lines changed

2 files changed

+33
-91
lines changed

.circleci/config.yml

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

.github/workflows/ci.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: CI
2+
3+
on:
4+
- push
5+
- pull_request
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
ruby:
14+
- 2.5
15+
- 2.6
16+
- 2.7
17+
- '3.0'
18+
- 3.1
19+
- "3.2.0-preview1"
20+
- head
21+
steps:
22+
- name: Checkout code
23+
uses: actions/checkout@v3
24+
- name: Set up Ruby
25+
uses: ruby/setup-ruby@v1
26+
with:
27+
ruby-version: ${{ matrix.ruby }}
28+
bundler-cache: true
29+
- name: Linting
30+
run: bundle exec standarb
31+
- name: test
32+
run: bundle exec rake test
33+
continue-on-error: ${{ matrix.ruby == 'head' }}

0 commit comments

Comments
 (0)