Skip to content

fix: import failing on large tables #70

fix: import failing on large tables

fix: import failing on large tables #70

Triggered via push November 26, 2024 10:49
Status Failure
Total duration 1m 37s
Artifacts

ci.yml

on: push
Matrix: build
Fit to window
Zoom out
Zoom in

Annotations

7 errors and 6 warnings
build (x86_64-unknown-linux-musl, ubuntu-latest, true)
This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v2`. Learn more: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/
build (x86_64-apple-darwin, macos-latest, false)
The job was canceled because "x86_64-unknown-linux-musl" failed.
build (x86_64-apple-darwin, macos-latest, false)
This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v2`. Learn more: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/
build (x86_64-unknown-linux-gnu, ubuntu-latest, true)
The job was canceled because "x86_64-unknown-linux-musl" failed.
build (x86_64-unknown-linux-gnu, ubuntu-latest, true)
This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v2`. Learn more: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/
build (x86_64-pc-windows-gnu, windows-latest, false, .exe)
The job was canceled because "x86_64-unknown-linux-musl" failed.
build (x86_64-pc-windows-gnu, windows-latest, false, .exe)
A task was canceled.
rustfmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
rustfmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
rustfmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
rustfmt
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
the borrowed expression implements the required traits: src/main.rs#L347
warning: the borrowed expression implements the required traits --> src/main.rs:347:39 | 347 | let f = BufReader::new(File::open(&path).unwrap()); | ^^^^^ help: change this to: `path` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args = note: `#[warn(clippy::needless_borrows_for_generic_args)]` on by default
unneeded `return` statement: src/main.rs#L38
warning: unneeded `return` statement --> src/main.rs:38:9 | 38 | return "22".to_string(); | ^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return = note: `#[warn(clippy::needless_return)]` on by default help: remove `return` | 38 - return "22".to_string(); 38 + "22".to_string() |