diff options
| author | Martin <mhaug@live.de> | 2021-06-29 14:36:35 +0200 |
|---|---|---|
| committer | Martin <mhaug@live.de> | 2021-06-30 00:39:11 +0200 |
| commit | 96563ccb421a79228e5803a21290649e7f06af30 (patch) | |
| tree | 50e04c5133be049a9dc3c9029540b3e3495dcafe /.github/workflows/rust.yml | |
| parent | 21d919e2d2a38802ba96003597eadb68342d71ef (diff) | |
CI allows for both modes
Diffstat (limited to '.github/workflows/rust.yml')
| -rw-r--r-- | .github/workflows/rust.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 43fec7d6..7c00dab4 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -36,6 +36,9 @@ jobs: toolchain: ${{ matrix.rust }} override: true + - name: Dependency cache + uses: Swatinem/rust-cache@v1 + - name: Build uses: actions-rs/cargo@v1 with: @@ -47,3 +50,9 @@ jobs: with: command: test args: --manifest-path typst/Cargo.toml --all-features + + - name: Test without incremental + uses: actions-rs/cargo@v1 + with: + command: test + args: --manifest-path typst/Cargo.toml --no-default-features --features fs |
