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 ce8074a commit e369949Copy full SHA for e369949
.github/workflows/ci.yml
@@ -6,14 +6,23 @@ on:
6
7
jobs:
8
build:
9
- runs-on: ubuntu-16.04
+ runs-on: ubuntu-20.04
10
steps:
11
- uses: actions/checkout@v2
12
- name: Setup Ruby
13
uses: ruby/[email protected]
14
with:
15
- ruby-version: 2.5
16
- bundler-cache: true
+ ruby-version: 2.7
+ - name: Bundle path
17
+ run: |
18
+ bundle config path .vendor/bundle
19
+ - name: Cache Ruby deps
20
+ uses: actions/cache@v2
21
+ with:
22
+ path: .vendor/bundle
23
+ key: ruby-${{ matrix.os }}-${{ matrix.ruby }}-${{ hashFiles('**/Gemfile.lock') }}
24
+ restore-keys: |
25
+ ruby-${{ matrix.os }}-${{ matrix.ruby }}-
26
- name: Ruby deps
27
run: gem install json kramdown jekyll bundler
28
- name: Setup Python
0 commit comments