We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fd1569 commit 07f6fd1Copy full SHA for 07f6fd1
.github/workflows/ci.yml
@@ -12,6 +12,24 @@ on:
12
- cron: '0 4 1 * *'
13
14
jobs:
15
+ rubocop:
16
+ runs-on: ubuntu-latest
17
+
18
+ steps:
19
+ - name: Checkout
20
+ uses: actions/checkout@v4
21
22
+ - name: Setup Ruby
23
+ uses: ruby/setup-ruby@v1
24
+ with:
25
+ ruby-version: '3.3'
26
27
+ - name: Bundler
28
+ run: bundle install
29
30
+ - name: Rubocop
31
+ run: bin/rubocop
32
33
rspec:
34
runs-on: ubuntu-latest
35
@@ -108,4 +126,4 @@ jobs:
108
126
DB_ADAPTER: ${{ matrix.adapter }}
109
127
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
110
128
with:
111
- coverageCommand: bin/rake
129
+ coverageCommand: bin/rspec
0 commit comments