Skip to content

Commit 8c0f8ef

Browse files
authored
Merge pull request #1 from datachainlab/feature/v0.1.0
Feature/v0.1.0
2 parents b8b842e + 7ead4cb commit 8c0f8ef

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+10685
-23
lines changed

.github/workflows/ci.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
jobs:
10+
ci:
11+
name: ci
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions-rust-lang/setup-rust-toolchain@v1
16+
- uses: Swatinem/rust-cache@v2
17+
- name: Install components
18+
run: |
19+
rustup component add rustfmt clippy
20+
cargo install cargo-machete
21+
- name: Check format
22+
run: cargo fmt --all -- --check
23+
- name: Check clippy
24+
run: cargo clippy --locked -- -D warnings
25+
- name: Check deps
26+
run: cargo machete
27+
- name: unit-test
28+
run: cargo test --release

.gitignore

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1 @@
1-
# Generated by Cargo
2-
# will have compiled files and executables
3-
debug/
41
target/
5-
6-
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
7-
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
8-
Cargo.lock
9-
10-
# These are backup files generated by rustfmt
11-
**/*.rs.bk
12-
13-
# MSVC Windows builds of rustc generate these, which store debugging information
14-
*.pdb
15-
16-
# RustRover
17-
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
18-
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
19-
# and can be added to the global gitignore or merged into this file. For a more nuclear
20-
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
21-
#.idea/

0 commit comments

Comments
 (0)