diff options
| author | Mroik <mroik@delayed.space> | 2026-04-01 02:10:02 +0200 |
|---|---|---|
| committer | Mroik <mroik@delayed.space> | 2026-04-13 06:55:04 +0200 |
| commit | a2c4cbcba928709dbe8ec0d6f8fc59add864aae1 (patch) | |
| tree | d4e7cfb6e817373e674cdd129d5434fae1b3ffda /.gitlab-ci.yml | |
| parent | 7294e5944c2e5620c47d1ab014e217c5ee05b3a6 (diff) | |
Add CI for gitlab
Signed-off-by: Mroik <mroik@delayed.space>
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..207e10d --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,15 @@ +stages: + - correct + +check-format: + stage: correct + image: rust:latest + script: + - rustup component add rustfmt + - cargo fmt --check + +run-tests: + stage: correct + image: rust:1.94.1 + script: + - cargo test -- --test-threads=1 |
