mirror of
https://github.com/ivabus/pantry
synced 2024-11-26 18:25:08 +03:00
fix cargo test
cargo doesn't like pkg names that start with numbers now apparently and the the tmpdirs we used were likely to be that. So explicitly set a name.
This commit is contained in:
parent
c1165e9788
commit
dd5d4446b4
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ build:
|
||||||
|
|
||||||
test:
|
test:
|
||||||
script: |
|
script: |
|
||||||
cargo init .
|
cargo init . --name xyz_tea_fixture
|
||||||
echo 'fn main() {println!("Hello World!");}' >src/main.rs
|
echo 'fn main() {println!("Hello World!");}' >src/main.rs
|
||||||
cargo clippy
|
cargo clippy
|
||||||
cargo run
|
cargo run
|
||||||
|
|
Loading…
Reference in a new issue