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 7db18dc commit 62e90bdCopy full SHA for 62e90bd
.github/workflows/main.yml
@@ -2,13 +2,28 @@ name: "Run the test suite"
2
on: push
3
4
jobs:
5
+ lint:
6
+ timeout-minutes: 5
7
+ name: "Ruby linter"
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: "Checkout code"
11
+ uses: "actions/checkout@v5"
12
+ - name: "Setup ruby"
13
+ uses: "ruby/setup-ruby@v1"
14
+ with:
15
+ bundler-cache: true
16
+ - name: "Run rubocop"
17
+ run: "bundle exec rubocop"
18
test:
19
timeout-minutes: 10
20
name: "Testing the gem"
21
runs-on: ubuntu-latest
22
steps:
23
- name: "Checkout code"
24
uses: "actions/checkout@v5"
25
+ - name: "Remove the Gemfile.lock"
26
+ run: "rm -rf Gemfile.lock"
27
- name: "Setup ruby"
28
uses: "ruby/setup-ruby@v1"
29
with:
0 commit comments