WIP: ci: initial prototype #24
1 changed files with 7 additions and 2 deletions
|
@ -19,7 +19,8 @@ jobs:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: ls . && pwd && whoami
|
- run: ls . && pwd && whoami
|
||||||
shell: bash
|
shell: bash
|
||||||
- uses: actions/cache@v4
|
- uses: actions/cache/restore@v4
|
||||||
|
id: cargo-cache-restore
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/.cargo/
|
~/.cargo/
|
||||||
|
@ -27,5 +28,9 @@ jobs:
|
||||||
- uses: https://github.com/dtolnay/rust-toolchain@stable
|
- uses: https://github.com/dtolnay/rust-toolchain@stable
|
||||||
with:
|
with:
|
||||||
toolchain: nightly
|
toolchain: nightly
|
||||||
|
- uses: actions/cache/save@v4
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
~/.cargo/
|
||||||
|
key: ${{ steps.cargo-cache-restore.outputs.cache-primary-key }}
|
||||||
- run: cargo test --all-features
|
- run: cargo test --all-features
|
Loading…
Add table
Reference in a new issue