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

Re-Issue (strict-types 1.3.0) #253

Merged
merged 21 commits into from
Jul 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
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
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ BITCOIN_EXPLORER_API_REGTEST=http://localhost:3000/regtest/api
# BITCOIN_ELECTRUM_API_SIGNET=mempool.space:60601
LNDHUB_ENDPOINT=https://lndhubx.bitmask.app
# CARBONADO_ENDPOINT=https://qvijq4x0ei.execute-api.us-east-2.amazonaws.com/dev/carbonado
BITMASK_ENDPOINT=http://localhost:7071
CARBONADO_ENDPOINT=http://localhost:7070/carbonado
BITCOIN_NETWORK=regtest
STRESS_TEST=false
Expand Down
14 changes: 12 additions & 2 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,14 @@ jobs:
- uses: olix0r/cargo-action-fmt/setup@v2
- uses: Swatinem/rust-cache@v2

- name: Lint
- name: Lint src
run: cargo clippy --locked --all-features --lib --message-format=json -- -D warnings | cargo-action-fmt

- name: Lint tests
run: cargo clippy --locked --all-features --tests --message-format=json -- -D warnings | cargo-action-fmt
env:
TEST_WALLET_SEED: ""

lint-wasm:
runs-on: ubuntu-latest

Expand All @@ -61,9 +66,14 @@ jobs:
- name: Add wasm32 target
run: rustup target add wasm32-unknown-unknown

- name: Lint (wasm32)
- name: Lint src (wasm32)
run: cargo clippy --locked --target wasm32-unknown-unknown --lib --message-format=json -- -D warnings | cargo-action-fmt

- name: Lint tests (wasm32)
run: cargo clippy --locked --target wasm32-unknown-unknown --tests --message-format=json -- -D warnings | cargo-action-fmt
env:
TEST_WALLET_SEED: ""

test:
runs-on: ubuntu-latest
needs: lint
Expand Down
Loading
Loading