Skip to content

fix: revert to ensure not to break scope of pr #208

fix: revert to ensure not to break scope of pr

fix: revert to ensure not to break scope of pr #208

Workflow file for this run

on: [push]
name: Ci
jobs:
build:
runs-on: ubuntu-latest
env:
RUSTC_WRAPPER: sccache
SCCACHE_CACHE_SIZE: "1G"
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: taiki-e/install-action@cargo-binstall
- run: cargo binstall --no-confirm --no-symlinks sccache
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
~/.cache/
key: ${{ runner.os }}-sccache-${{ hashFiles('**/Cargo.lock') }}
- uses: chetan/git-restore-mtime-action@v1
- run: cargo test --locked --no-run
- run: cargo test --locked --no-fail-fast
- run: cargo clippy --locked --workspace --tests --no-deps -- -D warnings