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 3171687 commit a145adcCopy full SHA for a145adc
.github/workflows/ci.yml
@@ -10,6 +10,8 @@ on:
10
- '**'
11
schedule:
12
- cron: '0 4 1 * *'
13
+ # Run workflow manually
14
+ workflow_dispatch:
15
16
jobs:
17
rspec:
@@ -18,6 +20,7 @@ jobs:
18
20
fail-fast: false
19
21
matrix:
22
ruby:
23
+ - '3.4'
24
- '3.3'
25
- '3.2'
26
- '3.1'
@@ -27,17 +30,13 @@ jobs:
27
30
28
31
steps:
29
32
- name: Checkout
- uses: actions/checkout@v4
33
+ uses: actions/checkout@v5
34
35
- name: Setup Ruby
36
uses: ruby/setup-ruby@v1
37
with:
38
ruby-version: ${{ matrix.ruby }}
39
bundler-cache: true
40
- - name: RSpec & publish code coverage
- uses: paambaati/[email protected]
- env:
41
- CC_TEST_REPORTER_ID: 3dfc7b128d751fb7905e3fc1b919d81b9203ef295341ea324305fac22a8be8bc
42
- with:
43
- coverageCommand: bin/rspec
+ - name: Run RSpec
+ run: bin/rspec
0 commit comments