Skip to content

Commit 3b6cdb4

Browse files
committed
ci: _
1 parent c75a010 commit 3b6cdb4

File tree

4 files changed

+30
-35
lines changed

4 files changed

+30
-35
lines changed

.github/workflows/errors.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616
- uses: dtolnay/rust-toolchain@nightly
17+
- name: Download modified by pre-ci Cargo.toml files
18+
uses: actions/download-artifact@v4
19+
with:
20+
name: modified-cargo-files
1721
- uses: dtolnay/install@cargo-docs-rs
1822
- run: cargo docs-rs
1923
timeout-minutes: 45
@@ -35,6 +39,10 @@ jobs:
3539
- if: matrix.rust == 'nightly'
3640
name: Enable type layout randomization
3741
run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout\ --cfg=exhaustive >> $GITHUB_ENV
42+
- name: Download modified by pre-ci Cargo.toml files
43+
uses: actions/download-artifact@v4
44+
with:
45+
name: modified-cargo-files
3846
- run: cargo update
3947
- run: cargo check
4048
- run: cargo test

.github/workflows/warnings.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ jobs:
66
steps:
77
- uses: actions/checkout@v4
88
- uses: dtolnay/rust-toolchain@clippy
9+
- name: Download modified by pre-ci Cargo.toml files
10+
uses: actions/download-artifact@v4
11+
with:
12+
name: modified-cargo-files
913
- run: cargo clippy --tests -- -Dwarnings
1014
timeout-minutes: 45
1115
machete:

flake.lock

Lines changed: 16 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

v_exchanges/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ thiserror.workspace = true
3636
tokio.workspace = true
3737
tracing.workspace = true
3838
v_utils = { workspace = true }
39-
40-
v_exchanges_adapters = { version = "^0.2.1", path = "../v_exchanges_adapters/", features = ["full"] }
4139
enum_dispatch = "0.3.13"
4240
eyre = "0.6.12"
4341

42+
v_exchanges_adapters = { version = "^0.2.1", path = "../v_exchanges_adapters/", features = ["full"] }
43+
4444
reqwest = { version = "^0.12.12", optional = true }
4545

4646
insta.workspace = true #dbg (for some reason is not loading in dev-dependencies rn

0 commit comments

Comments
 (0)