Add missing auth id(0x02~0x05) #544
Workflow file for this run
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 all-via-docker | |
- name: Build test extensions | |
run: make -f tests/xudt_rce/extension_scripts.Makefile all-via-docker | |
- name: Run simulator tests | |
run: bash tests/validate_signature_rsa/run.sh | |
- name: Run tests | |
run: cargo test | |
- name: Run xudt tests | |
run: cd tests/xudt_rce_rust && cargo test | |
- name: Run xudt simulator tests | |
run: cd tests/xudt_rce && bash run.sh | |
- name: Run omni_lock tests | |
run: cd tests/omni_lock_rust && cargo test | |
- name: Run omni_lock simulator tests | |
run: cd tests/omni_lock && bash run.sh |