Merge pull request #16 from StrijpT-Ellie/feat/python_wrapper_code_do… #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |