Skip to content

Commit

Permalink
fix: Fix rust pre-merge for new tio directory (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmccorm4 authored Feb 14, 2025
1 parent f830734 commit c917167
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/pre-merge-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ on:
- main
paths:
- 'runtime/rust/**'
- 'llm/rust/**'
- 'applications/llm/bin/tio/**'
- '**.rs'
- 'Cargo.toml'
- 'Cargo.lock'

jobs:
pre-merge-rust:
Expand Down Expand Up @@ -55,7 +60,7 @@ jobs:
working-directory: runtime/rust
run: cargo check --locked
- name: Run Cargo Check on tio
working-directory: apps/tio
working-directory: applications/llm/bin/tio
run: cargo check --locked
- name: Verify Code Formatting
working-directory: runtime/rust
Expand All @@ -64,7 +69,7 @@ jobs:
working-directory: runtime/rust
run: cargo clippy --no-deps --all-targets -- -D warnings
- name: Run Clippy Checks on tio
working-directory: apps/tio
working-directory: applications/llm/bin/tio
run: cargo clippy --no-deps --all-targets -- -D warnings
- name: Install and Run cargo-deny
working-directory: runtime/rust
Expand Down
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.idea
.vs/
.vscode/
[Bb][Ii][Nn]/
[Bb]inlog/
[Bb][Uu][Ii][Ll][Dd]/
[Cc][Mm][Aa][Kk][Ee]/
Expand All @@ -11,7 +10,6 @@

**/.idea
**/.vscode/
**/[Bb][Ii][Nn]/
**/[Bb]inlog/
**/[Dd]ebug/
**/[Oo][Bb][Jj]/
Expand Down

0 comments on commit c917167

Please sign in to comment.