Near-One / near-plugins

Implementation of common patterns used for NEAR smart contracts.
Creative Commons Zero v1.0 Universal
27 stars 12 forks source link

Use `near_workspaces::compile_project` instead of custom code #133

Open mooori opened 8 months ago

mooori commented 8 months ago

Currently test contracts are compiled using custom code in repo.rs which ensures the required toolchain and target are installed in CI.

131 modified CI setup to install the required toolchain and target. As a result, we should try to remove the custom code in repo.rs and use near_workspaces::compile_project instead.