持续集成CI入门篇(一)
一丶创建mavne工程 编写好测试页面

二丶创建.gitignore 将不需要提交的文件给忽略掉
.idea
target
*.iml
三丶创建.gitlab-ci.yml
stages: - test test: stage: test script: - echo first test ci
四丶将项目推送到gitlab

五丶进入流水线查看 打印语句 SUCCESS



.idea
target
*.iml
stages: - test test: stage: test script: - echo first test ci


