Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
run: cargo fmt --all -- --check

- name: Clippy
run: cargo clippy --all-targets --workspace --features fulltext -- -D warnings
run: cargo clippy --all-targets --workspace --features fulltext --locked -- -D warnings

build:
runs-on: ${{ matrix.os }}
Expand All @@ -66,7 +66,7 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Build
run: cargo build --features fulltext
run: cargo build --features fulltext --locked

unit:
runs-on: ${{ matrix.os }}
Expand All @@ -80,7 +80,7 @@ jobs:
- uses: actions/checkout@v6

- name: Test
run: cargo test -p paimon --all-targets --features fulltext
run: cargo test -p paimon --all-targets --features fulltext --locked
env:
RUST_LOG: DEBUG
RUST_BACKTRACE: full
Expand All @@ -105,13 +105,13 @@ jobs:
run: make docker-up

- name: Rust Integration Test
run: cargo test -p paimon-integration-tests --all-targets
run: cargo test -p paimon-integration-tests --all-targets --locked
env:
RUST_LOG: DEBUG
RUST_BACKTRACE: full

- name: DataFusion Integration Test
run: cargo test -p paimon-datafusion --test read_tables
run: cargo test -p paimon-datafusion --test read_tables --locked
env:
RUST_LOG: DEBUG
RUST_BACKTRACE: full
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
# under the License.

/target
/Cargo.lock
.idea
.vscode
**/.DS_Store
Expand Down
1 change: 1 addition & 0 deletions .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ header:
- ".gitattributes"
- ".github/PULL_REQUEST_TEMPLATE.md"
- "crates/paimon/tests/**/*.json"
- "**/Cargo.lock"
- "**/go.sum"
- "**/DEPENDENCIES.*.tsv"
- ".devcontainer/devcontainer.json"
Expand Down
Loading
Loading