We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f561023 commit 140b136Copy full SHA for 140b136
1 file changed
.github/workflows/main.yml
@@ -2,9 +2,9 @@ name: Ruby CI
2
3
on:
4
push:
5
- branches: [ master, development ]
+ branches: [ master, develop ]
6
pull_request:
7
8
9
jobs:
10
test:
@@ -22,9 +22,9 @@ jobs:
22
- uses: actions/cache@v2
23
with:
24
path: vendor/bundle
25
- key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
+ key: ${{ matrix.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
26
restore-keys: |
27
- ${{ runner.os }}-gems-
+ ${{ matrix.os }}-gems-
28
- name: Install dependencies
29
run: |
30
gem install bundler
0 commit comments