Skip to content

Commit 140b136

Browse files
committed
Fix CI workflow
1 parent f561023 commit 140b136

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Ruby CI
22

33
on:
44
push:
5-
branches: [ master, development ]
5+
branches: [ master, develop ]
66
pull_request:
7-
branches: [ master, development ]
7+
branches: [ master, develop ]
88

99
jobs:
1010
test:
@@ -22,9 +22,9 @@ jobs:
2222
- uses: actions/cache@v2
2323
with:
2424
path: vendor/bundle
25-
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
25+
key: ${{ matrix.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
2626
restore-keys: |
27-
${{ runner.os }}-gems-
27+
${{ matrix.os }}-gems-
2828
- name: Install dependencies
2929
run: |
3030
gem install bundler

0 commit comments

Comments
 (0)