我正在尝试在Gitlab上运行一个简单的python项目。我在EC2实例上设置了运行程序,并且试图在项目中使用它。 这是.gitlab-ci.yml文件:
tags:
- gr
- grun
- runner
stages:
- build
build:
image: python:3.7
script:
- echo "building"
- pip install -r requirements.txt
- python test.py
我收到此错误-
This GitLab CI configuration is invalid: root config contains unknown keys: tags
在.gitlab-ci.yml文件中使用作业和环境时,出现相同的错误。跑步者处于活动状态。 如何解决此问题?