diff options
author | 2021-05-20 07:01:18 -0700 | |
---|---|---|
committer | 2021-05-20 07:01:18 -0700 | |
commit | 4cffa16633f83b6604f7ce3de47d40a29e6a9b54 (patch) | |
tree | dc3ed21e11a22d3b38e8c5e834d073dc71e0d621 | |
parent | 8ecfd1d6b8103732efec2ea3aea4bd441f971fc7 (diff) | |
download | notion-4cffa16633f83b6604f7ce3de47d40a29e6a9b54.tar.gz notion-4cffa16633f83b6604f7ce3de47d40a29e6a9b54.tar.zst notion-4cffa16633f83b6604f7ce3de47d40a29e6a9b54.zip |
build: Try speeding up build with build caching (#14)
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a68d7f4..bd325ac 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,6 +29,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - name: Rust Cache + uses: Swatinem/rust-cache@v1.2.0 - name: Build uses: actions-rs/cargo@v1 with: |