Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
36 changes: 0 additions & 36 deletions .github/PULL_REQUEST_TEMPLATE.md

This file was deleted.

5 changes: 5 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,8 @@ updates:
patterns:
- "soroban-sdk"
- "soroban-*"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cargo test --workspace --locked
- run: cargo test --workspace --all-features --locked

build-wasm:
name: Build (wasm32v1-none)
Expand Down
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,15 @@ clean:

bench:
cargo test -p attester-registry large_attester_allowlist_load -- --nocapture

NETWORK ?= testnet

config-check:
./scripts/admin.sh --network $(NETWORK) config show
cargo test -p lafiya-config

config-list:
./scripts/admin.sh --network $(NETWORK) config list

deploy:
./scripts/deploy.sh --network $(NETWORK)
Loading