Skip to content

feat: property valuation oracle #4

feat: property valuation oracle

feat: property valuation oracle #4

Workflow file for this run

name: Unit Tests
on:
push:
branches: [ main, develop, master ]
paths:
- 'contracts/lib/**'
- 'contracts/traits/**'
- 'Cargo.toml'
- 'Cargo.lock'
pull_request:
branches: [ main, develop, master ]
paths:
- 'contracts/lib/**'
- 'contracts/traits/**'
- 'Cargo.toml'
- 'Cargo.lock'
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: PropertyRegistry Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-
- name: Run PropertyRegistry unit tests
working-directory: contracts/lib
run: cargo test --lib