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 44c87f9 commit c352fc4Copy full SHA for c352fc4
.github/workflows/main.yml
@@ -10,9 +10,13 @@ jobs:
10
name: CI
11
runs-on: ubuntu-latest
12
steps:
13
- - uses: actions/checkout@master
+ - uses: actions/checkout@v2
14
+ - name: Cache cargo
15
+ uses: actions/cache@v1
16
with:
- fetch-depth: 50
17
+ path: target
18
+ key: cargo-build-${{ hashFiles('**/Cargo.lock') }}
19
+ restore-key: cargo-build-
20
- name: Build Blog
21
run: cargo run
22
- name: Deploy to GitHub Pages
0 commit comments