Commit a4c7a4db authored by Daniele Tavagnacco's avatar Daniele Tavagnacco
Browse files

added CI

parent 2a9dc34c
Loading
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100644
+11 −0
Original line number Diff line number Diff line
stages:
- build  # section name of the CI pipeline

build_job:
  stage: build   # section where to run the job
  tags:
    - git-run-ia2  # who is running the job
  script:
    - echo "Building the application..."
    - python -m py_compile program.py
    - echo "Building complete."