# Generated by chant migrate from input.yml

stages:
  - build
  - test
workflow:
  rules:
    - if: '$CI_PIPELINE_SOURCE == "push"'

build:
  image: ubuntu:24.04
  artifacts:
    paths:
      - dist/
    name: dist
    expire_in: '7 days'
  script:
    - make build
  stage: build

test:
  image: ubuntu:24.04
  needs:
    - build
  script:
    - ./dist/app --test
  stage: test
