Lang change

This commit is contained in:
KD
2025-03-09 00:23:47 +00:00
parent 7d6c8fcf33
commit da37c4703f
7 changed files with 39 additions and 18 deletions

29
.gitlab-ci.yml Normal file
View File

@@ -0,0 +1,29 @@
stages:
- build
- test
build:
stage: build
image: rust:1.85
script:
- cargo build --release
artifacts:
paths:
- target/release/songparser
expire_in: 1 week
cache:
key: "cargo-cache"
paths:
- target/
- ~/.cargo/
test:
stage: test
image: rust:latest
script:
- cargo test
cache:
key: "cargo-cache"
paths:
- target/
- ~/.cargo/