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 802a7aa + 6c48f8f commit 3be23fdCopy full SHA for 3be23fd
.github/workflows/test.yml
@@ -0,0 +1,25 @@
1
+name: Test
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ test:
9
+ runs-on: ubuntu-latest
10
11
+ strategy:
12
+ matrix:
13
+ ruby: ["3.2"]
14
+ gemfile: ["Gemfile"]
15
16
+ env:
17
+ BUNDLE_GEMFILE: ${{ matrix.gemfile }}
18
19
+ steps:
20
+ - uses: actions/checkout@v3
21
+ - uses: ruby/setup-ruby@v1
22
+ with:
23
+ ruby-version: ${{ matrix.ruby }}
24
+ bundler-cache: true
25
+ - run: bundle exec rake
.travis.yml
0 commit comments