Skip to content

Commit e9384c9

Browse files
authored
Update rust.yml
1 parent afe6308 commit e9384c9

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/rust.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v3
19-
with:
20-
path: mybatis/Cargo.toml
2119
- name: Build
22-
run: cargo build --verbose
20+
run: |
21+
cd mybatis
22+
cargo build --verbose
2323
- name: Run tests
24-
run: cargo test --verbose
24+
run: |
25+
cd mybatis
26+
cargo test --verbose

0 commit comments

Comments
 (0)