Browse Source

chore: add .gitlab-ci.yml

main
fdai7381 2 years ago
committed by fdai7451
parent
commit
50f4589c66
  1. 20
      .gitlab-ci.yml

20
.gitlab-ci.yml

@ -0,0 +1,20 @@
image: "rust:latest"
default:
before_script:
- rustc --version
- cargo --version
stages:
- test
- build
test-code:
stage: test
script:
- cargo test
build-code:
stage: build
script:
- cargo build --release
Loading…
Cancel
Save