We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1824d93 commit acaa1f6Copy full SHA for acaa1f6
2 files changed
.github/workflows/lint.yml
@@ -32,6 +32,22 @@ jobs:
32
with:
33
cache-on-failure: true
34
35
+ - name: Install simplex-cli via simplexup
36
+ shell: bash
37
+ run: |
38
+ curl -L https://smplx.simplicity-lang.org | bash
39
+ source "$HOME/.bashrc"
40
+ echo "$HOME/.local/bin" >> "$GITHUB_PATH"
41
+ simplexup
42
+ simplex --version
43
+
44
+ - name: Generate contract artifacts
45
46
47
+ cd crates/contracts
48
+ simplex build
49
+ test -f src/artifacts/mod.rs
50
51
- name: Format check
52
run: cargo fmt --all --check
53
.github/workflows/tests.yml
@@ -75,6 +75,7 @@ jobs:
75
shell: bash
76
run: |
77
curl -L https://smplx.simplicity-lang.org | bash
78
79
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
80
simplexup
81
simplex --version
0 commit comments