Mycelium/.gitlab-ci.yml
Ava Affine 528a61749d Readme and early CI
This commit prepares the code to be uploaded to gitlab.
Included is a small readme and basic CI.

Signed-off-by: Ava Affine <ava@sunnypup.io>
2025-05-21 15:10:44 -07:00

28 lines
393 B
YAML
Executable file

default:
image: rustlang/rust:nightly
stages:
- build
- test
compile-library:
stage: build
script:
- cargo build --lib
compile-decomposer:
stage: build
script:
- cargo build --bin decomposer
unit-test-language-frontend:
stage: test
script:
- cargo test lexer
- cargo test parser
unit-test-number-package:
stage: test
script:
- cargo test number