Merge changes #5
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 | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Update submodules | |
run: git submodule update --init | |
- name: Build contract | |
run: make -f Makefile.clang all-via-docker | |
- name: Run omni_lock tests | |
run: cd tests/omni_lock_rust && cargo test |