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:
Max Howell 2023-03-28 20:49:54 -04:00
parent c1165e9788
commit dd5d4446b4
No known key found for this signature in database
GPG key ID: 741BB84EF5BB9EEC

View file

@ -54,7 +54,7 @@ build:
test:
script: |
cargo init .
cargo init . --name xyz_tea_fixture
echo 'fn main() {println!("Hello World!");}' >src/main.rs
cargo clippy
cargo run