Skip to content

Commit 5c11dd2

Browse files
mdbookをインストールするコマンドを追加
1 parent 001e342 commit 5c11dd2

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,20 @@ jobs:
8383
./atcoder-problems-frontend/node_modules
8484
key: ${{ runner.os }}-cargo-${{ hashFiles('atcoder-problems-frontend/yarn.lock') }}
8585

86+
- name: Cache cargo registry
87+
uses: actions/cache@v2
88+
with:
89+
path: |
90+
~/.cargo/git
91+
~/.cargo/registry/cache
92+
~/.cargo/registry/index
93+
./atcoder-problems-backend/target
94+
key: ${{ runner.os }}-cargo-${{ hashFiles('atcoder-problems-backend/Cargo.lock') }}
95+
8696
- name: Install dependencies
8797
run: yarn
98+
- name: Setup mdBook
99+
run: cargo install mdbook
88100
- name: build
89101
run: yarn build
90102
- name: test

0 commit comments

Comments
 (0)