-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ci): use written out command in ci
- Loading branch information
Showing
1 changed file
with
3 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,6 @@ concurrency: | |
cancel-in-progress: true | ||
|
||
jobs: | ||
|
||
test: | ||
name: Test Suite | ||
runs-on: ubuntu-latest | ||
|
@@ -24,7 +23,7 @@ jobs: | |
|
||
- name: 🔑 Setup PAT | ||
run: sed -i 's|ssh://[email protected]/sedaprotocol/vrf-rs.git|https://x-access-token:${{ secrets.PAT_TOKEN }}@github.com/sedaprotocol/vrf-rs.git|' Cargo.toml | ||
|
||
- name: 📋 Run cargo clippy | ||
run: cargo clippy -- -D warnings | ||
|
||
|
@@ -33,7 +32,7 @@ jobs: | |
run: cargo test --locked | ||
env: | ||
RUST_BACKTRACE: 1 | ||
|
||
- name: 📝 Generate Schema | ||
if: always() | ||
run: cargo schema --locked | ||
|
@@ -43,8 +42,7 @@ jobs: | |
run: git diff --exit-code schema | ||
|
||
- name: 🦾 Compile WASM contract | ||
run: cargo wasm | ||
|
||
run: cargo build -p seda-contract --release --lib --target wasm32-unknown-unknown --locked | ||
|
||
fmt: | ||
name: fmt | ||
|
@@ -61,4 +59,3 @@ jobs: | |
|
||
- name: 📋 Format Check | ||
run: cargo +nightly fmt -- --check | ||
|