Skip to content

Commit 2b4905a

Browse files
authored
Merge branch 'master' into master
2 parents dc1e668 + 82fca50 commit 2b4905a

File tree

3 files changed

+41
-1
lines changed

3 files changed

+41
-1
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "bundler" # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "weekly"
12+
day: "friday"
13+
assignees:
14+
- "LeFnord"

.github/workflows/rubocop.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Rubocop
2+
3+
on:
4+
push:
5+
branches:
6+
- '*'
7+
pull_request:
8+
branches:
9+
- '*'
10+
11+
jobs:
12+
rubocop:
13+
name: Rubocop
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v2
17+
- uses: actions/setup-ruby@v1
18+
with:
19+
ruby-version: '3.0'
20+
- run: gem install rubocop --no-doc
21+
- run: rubocop --format progress --format json --out rubocop.json
22+
id: rubocop
23+
- uses: duderman/[email protected]
24+
with:
25+
path: rubocop.json
26+
if: ${{ failure() }}

.github/workflows/ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
ruby-version: ['2.6', '2.7', '3.0']
17-
grape-version: [1.5.2, 1.4.0, 1.3.3]
17+
grape-version: [1.5.3, 1.4.0, 1.3.3]
1818
model-parser: [grape-swagger-entity, grape-swagger-representable, '']
1919

2020
steps:

0 commit comments

Comments
 (0)