Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(backend)!: separate tower and warp #65

Merged
merged 16 commits into from
Jan 22, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci: remove extra features
futursolo committed Jan 22, 2023
commit b92c8c5468fa515c07fb9b795300d309886c8a87
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ jobs:
uses: davidB/rust-cargo-make@v1

- name: Run Lints
run: ci/feature-soundness.sh
run: cargo make clippy

rustfmt:
name: Check Formatting
18 changes: 16 additions & 2 deletions Makefile.toml
Original file line number Diff line number Diff line change
@@ -7,5 +7,19 @@ workspace = false
command = "cargo"
args = ["run", "--bin", "stctl", "--", "${@}"]

[config]
log_level = "info"
[tasks.clippy]
clear = true
workspace = false
script = '''
#!/usr/bin/env bash
set -e

cargo clippy --workspace --all-features -- -D warnings

# We should lint bridge separately as resolvable features result in different behaviours.
cargo clippy -p stellation-bridge -- -D warnings
cargo clippy -p stellation-bridge --features=resolvable -- -D warnings

cargo clippy -p example-fullstack-client -- -D warnings
cargo clippy -p example-fullstack-server -- -D warnings
'''
24 changes: 0 additions & 24 deletions ci/feature-soundness.sh

This file was deleted.