Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
limuy2022 committed May 31, 2024
1 parent 0f33ae7 commit 6a0c61b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/fmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Check Fmt
run: cargo fmt -- --check
run: cd gdrust && cargo fmt -- --check
2 changes: 1 addition & 1 deletion .github/workflows/rust_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --all
run: cd gdrust && cargo build --all
- name: Build Release
run: cargo build --all --release
- name: Run tests Debug
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --all
run: cd gdrust && cargo build --all
- name: Build Release
run: cargo build --all --release
- name: Run tests Debug
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --all
run: cd gdrust && cargo build --all
- name: Build Release
run: cargo build --all --release
- name: Run tests Debug
Expand Down
3 changes: 3 additions & 0 deletions _typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

[files]
extend-exclude = ["addons"]

0 comments on commit 6a0c61b

Please sign in to comment.