Skip to content

Refactor tests: splite nft_test.rs to nft_test.rs and meta_loader_tes… #238

Refactor tests: splite nft_test.rs to nft_test.rs and meta_loader_tes…

Refactor tests: splite nft_test.rs to nft_test.rs and meta_loader_tes… #238

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install libraries
run: |
sudo apt-get update
sudo apt-get install -y libsodium-dev libsecp256k1-dev liblz4-dev
- run: cargo fmt --check
- run: cargo clippy
- run: cargo build --verbose
- run: cargo test --lib -- --test-threads=1