Skip to content
Snippets Groups Projects
Commit fcc323ac authored by Ronick Romulus's avatar Ronick Romulus
Browse files

Deleted .gitlab-ci.yml

parent 01078128
No related branches found
No related tags found
No related merge requests found
Pipeline #27674 failed
stages:
- build
- test
- deploy
build-job:
stage: build
script:
- echo "Compiling the code..."
- echo "Compile complete."
unit-test-job:
stage: test
script:
- echo "Running unit tests... This will take about 60 seconds."
- sleep 60
- echo "Code coverage is 90%"
lint-test-job:
stage: test
script:
- echo "Linting code... This will take about 10 seconds."
- sleep 10
- echo "No lint issues found."
deploy-job:
environment: production
stage: deploy
script:
- echo "Deploying application..."
- echo "Application successfully deployed."
sast:
stage: test
include:
- template: Security/SAST.gitlab-ci.yml
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment