Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rzadp authored Aug 8, 2024
1 parent 058831b commit 2b5ef29
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,6 @@ jobs:
run: cargo build
timeout-minutes: 90

# This is mentioned as example in the README:
- name: Build the node
run: cargo build --package parachain-template-node --release

- name: Run clippy
run: |
SKIP_WASM_BUILD=1 cargo clippy --all-targets --locked --workspace --quiet
Expand All @@ -72,6 +68,13 @@ jobs:
run: SKIP_WASM_BUILD=1 cargo doc --workspace --no-deps
timeout-minutes: 15

# This is mentioned as example in the README:
- name: Build the node
run: |
# Save some space from debug builds
rm -rf ./target
cargo build --package parachain-template-node --release
build-docker:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 2b5ef29

Please sign in to comment.