We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 352d2cd commit bccc84dCopy full SHA for bccc84d
2 files changed
.github/workflows/ci.yaml
@@ -0,0 +1,28 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
+ workflow_dispatch:
7
+ schedule:
8
+ - cron: '0 0 * * 0'
9
10
+jobs:
11
+ ci:
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ ruby-version:
17
+ - '3.1'
18
+ - '3.3'
19
+ - '3.4'
20
+ steps:
21
+ - uses: actions/checkout@v5
22
+ - name: Set up Ruby
23
+ uses: ruby/setup-ruby@v1
24
+ with:
25
+ ruby-version: ${{ matrix.ruby-version }}
26
+ bundler-cache: true
27
+ - name: Run tests
28
+ run: bundle exec rake
.travis.yml
0 commit comments