Cargo.toml Action path change
Some checks failed
Run Tests on Code / run-tests (push) Failing after 37s
Some checks failed
Run Tests on Code / run-tests (push) Failing after 37s
This commit is contained in:
parent
0b804f5bed
commit
50cf8962e3
2 changed files with 3 additions and 3 deletions
|
@ -21,7 +21,7 @@ jobs:
|
|||
uses: https://code.forgejo.org/actions/checkout@v3
|
||||
-
|
||||
name: Change To Rust Root Dir
|
||||
run: cd src-tauri
|
||||
run: cd src-tauri/
|
||||
-
|
||||
name: Set Up Cargo Cache
|
||||
uses: actions/cache@v3
|
||||
|
@ -35,7 +35,7 @@ jobs:
|
|||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
||||
-
|
||||
name: Run Clippy
|
||||
run: cargo clippy --manifest-path ./src/Cargo.toml
|
||||
run: cargo clippy --manifest-path **/Cargo.toml
|
||||
-
|
||||
name: Check if Version in Cargo.toml matches Tag
|
||||
run: |
|
||||
|
|
|
@ -37,4 +37,4 @@ jobs:
|
|||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
||||
-
|
||||
name: Run Clippy
|
||||
run: cargo clippy --manifest-path ./src/Cargo.toml
|
||||
run: cargo clippy --manifest-path **/Cargo.toml
|
Reference in a new issue