Skip to content

move PTR_SIZE and FsError to metastore #114

move PTR_SIZE and FsError to metastore

move PTR_SIZE and FsError to metastore #114

Workflow file for this run

name: Build and Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache cargo dependencies
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
run: cargo build
- uses: actions/checkout@v4
- name: Run clippy
run: cargo clippy --all-features -- -Dwarnings
- name: Run tests
run: cargo test