Skip to content

Commit

Permalink
fix(ci): use written out command in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
gluax committed Dec 5, 2024
1 parent 27d9cd6 commit d2a652c
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/Basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ concurrency:
cancel-in-progress: true

jobs:

test:
name: Test Suite
runs-on: ubuntu-latest
Expand All @@ -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

Expand All @@ -33,7 +32,7 @@ jobs:
run: cargo test --locked
env:
RUST_BACKTRACE: 1

- name: 📝 Generate Schema
if: always()
run: cargo schema --locked
Expand All @@ -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
Expand All @@ -61,4 +59,3 @@ jobs:

- name: 📋 Format Check
run: cargo +nightly fmt -- --check

0 comments on commit d2a652c

Please sign in to comment.