We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7551b22 commit d11dbb3Copy full SHA for d11dbb3
.circleci/config.yml
.github/workflows/ci.yml
@@ -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