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 001e342 commit 5c11dd2Copy full SHA for 5c11dd2
.github/workflows/ci.yml
@@ -83,8 +83,20 @@ jobs:
83
./atcoder-problems-frontend/node_modules
84
key: ${{ runner.os }}-cargo-${{ hashFiles('atcoder-problems-frontend/yarn.lock') }}
85
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
+
96
- name: Install dependencies
97
run: yarn
98
+ - name: Setup mdBook
99
+ run: cargo install mdbook
100
- name: build
101
run: yarn build
102
- name: test
0 commit comments