Skip to content
Open
Show file tree
Hide file tree
Changes from 11 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,9 @@ jobs:
cache-all-crates: "true" # Yes, it's a string
- name: Install Cargo Plugins
run: cargo install cargo-make cargo-near --locked
# builds all contracts in the workspace with poa factory global contracts disabled
- name: Build
run: cargo make build
run: cargo make test-build
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
Expand Down
176 changes: 43 additions & 133 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ near-contract-standards = "5.15"
near-crypto = "0.30"
near-plugins = { git = "https://github.com/Near-One/near-plugins", tag = "v0.5.0" }
near-sdk = "5.15"
near-workspaces = "0.20"
near-workspaces = "0.21"
cargo-near-build = "0.9.0"

p256 = { version = "0.13", default-features = false, features = ["ecdsa"] }
Expand Down
Loading