We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad73c37 commit 7513d38Copy full SHA for 7513d38
.github/workflows/e2e-tests.yaml
@@ -9,6 +9,7 @@ on:
9
branches:
10
- main
11
merge_group:
12
+ workflow_dispatch:
13
14
jobs:
15
tests:
Makefile
@@ -58,7 +58,7 @@ build-all: ## Builds all production contracts.
58
build-test-contracts: ## Builds contracts used in e2e-tests
59
@for d in $(TEST_PATHS); do \
60
echo "Building $$d contract" ; \
61
- if [[ "$$d" = $(TEST_CONTRACTS)/psp22 ]]; then \
+ if [ "$$d" = "$(TEST_CONTRACTS)/psp22" ]; then \
62
cargo contract build --quiet --manifest-path $$d/Cargo.toml --release --features "contract"; \
63
else \
64
cargo contract build --quiet --manifest-path $$d/Cargo.toml --release; \
0 commit comments