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.
2 parents f7d5b06 + 6d08023 commit 283e1b1Copy full SHA for 283e1b1
.github/workflows/build.yml
@@ -0,0 +1,30 @@
1
+name: CI Test
2
+on: [ push ]
3
+jobs:
4
+ build:
5
+ name: Ruby ${{ matrix.ruby }}
6
+ runs-on: ubuntu-latest
7
+ strategy:
8
+ fail-fast: false
9
+ matrix:
10
+ include:
11
+ - ruby: 3.2
12
+ bundler_version: 2.4.4
13
+ - ruby: 3.1
14
15
+ - ruby: 3.0
16
17
+ env:
18
+ CI: 1
19
+ BUNDLER_VERSION: ${{ matrix.bundler_version }}
20
+ USE_OFFICIAL_GEM_SOURCE: 1
21
+ steps:
22
+ - uses: actions/checkout@v3
23
+ - uses: ruby/setup-ruby@v1
24
+ with:
25
+ ruby-version: ${{ matrix.ruby }}
26
+ - name: Install bundler
27
+ run: gem install bundler -v $BUNDLER_VERSION
28
+ - name: Install dependencies
29
+ run: bundle install
30
+ - run: bundle exec rspec
0 commit comments