Skip to content

Commit

Permalink
fix: ensure we're hitting the whole workspace in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Oct 9, 2024
1 parent b6c1f8d commit b787e52
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: cargo fmt
run: cargo fmt -- --check
run: cargo fmt --all --check
- name: cargo clippy
run: cargo clippy --tests -- -D warnings
run: cargo clippy --tests --all -- -D warnings
- name: cargo check
run: cargo check
run: cargo check --all
- name: cargo test
run: cargo test
2 changes: 1 addition & 1 deletion python/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ impl Expr {
}

/// Converts this expression to cql2-text.
fn to_text<'py>(&self) -> PyResult<String> {
fn to_text(&self) -> PyResult<String> {
self.0.to_text().map_err(to_py_error)
}

Expand Down

0 comments on commit b787e52

Please sign in to comment.