Skip to content

Merge pull request #16 from StrijpT-Ellie/feat/python_wrapper_code_do… #9

Merge pull request #16 from StrijpT-Ellie/feat/python_wrapper_code_do…

Merge pull request #16 from StrijpT-Ellie/feat/python_wrapper_code_do… #9

Workflow file for this run

name: Rust Unit Tests
on:
push:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2 # Checkout code
with:
path: ./lib/cw-core # Checkout into ./lib/cw-core directory
working-directory: ./lib/cw-coreSet # working directory to ./lib/cw-core
- uses: actions-rs/toolchain@v1 # Install Rust
with:
toolchain: stable
- name: Cargo Check
working-directory: ./lib/cw-core
run: cargo check --release
- name: Cargo Build
working-directory: ./lib/cw-core
run: cargo build --release
- name: Cargo Test
working-directory: ./lib/cw-core
run: cargo test --release util