Commit a8b277f4 authored by Patrizia Barria's avatar Patrizia Barria
Browse files

Update .gitlab-ci.yml file

parent 86b8ef64
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."