diff options
| author | mo khan <mo@mokhan.ca> | 2025-06-09 14:08:18 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-06-09 14:08:18 -0600 |
| commit | 874cb2439e97b58bd622d95e282689bf76f98982 (patch) | |
| tree | a0b2ee689722614fb3328298bd15cfe8718ef478 | |
| parent | 2882d172f610c1b9af41474bde6b6a90ba0b9ca4 (diff) | |
chore: split the unit and integration tests
| -rw-r--r-- | .gitlab-ci.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3245e33..7b09df5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,12 @@ unit: + image: rust:latest + script: + - cargo test + +integration: image: ruby:latest script: - - env | sort - - sh ./bin/cibuild + - bundle install + - sh ./bin/test variables: DEBUG: true |
