Skip to content

Tauri IDE #35

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
Open
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/main_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
override: true

- name: Check IDE
working-directory: ./ide
working-directory: ./ide/src-tauri
run: cargo check --verbose

- name: Check Engine
Expand All @@ -47,7 +47,7 @@ jobs:
override: true

- name: Build IDE
working-directory: ./ide
working-directory: ./ide/src-tauri
run: cargo build --verbose

- name: Build Engine
Expand All @@ -73,7 +73,7 @@ jobs:
override: true

- name: Test IDE
working-directory: ./ide
working-directory: ./ide/src-tauri
run: cargo test --verbose

- name: Test Engine
Expand All @@ -100,7 +100,7 @@ jobs:
components: clippy

- name: Clippy IDE
working-directory: ./ide
working-directory: ./ide/src-tauri
run: cargo clippy # -- -D warnings

- name: Clippy Engine
Expand All @@ -127,7 +127,7 @@ jobs:
components: rustfmt

- name: Check IDE formatting
working-directory: ./ide
working-directory: ./ide/src-tauri
run: cargo fmt --check

- name: Check Engine formatting
Expand Down
Loading