Add test pipeline

This commit is contained in:
onyinyang 2023-05-15 23:33:23 +00:00
parent 84622bb7f8
commit fc8711d279
No known key found for this signature in database
GPG Key ID: 156A6435430C2036
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
image: "rust:latest"
test:cargo:
script:
- rustc --version && cargo --version # Print version info for debugging
- cargo test --workspace --verbose
test:lox-unit:
script:
- cargo test -- release
artifacts:
when: always