簡単な "hello, world" Gitlab CI スクリプトを作成したいと思います。私はすでに Docker ランナーを動作させており、次のようなことを試しています。
image: debian:sid
test:first:
script:
- true
残念ながら、ビルドは次のエラーで失敗します。test:first job: script should be a string or an array of a strings
私は何を間違っていますか?
簡単な "hello, world" Gitlab CI スクリプトを作成したいと思います。私はすでに Docker ランナーを動作させており、次のようなことを試しています。
image: debian:sid
test:first:
script:
- true
残念ながら、ビルドは次のエラーで失敗します。test:first job: script should be a string or an array of a strings
私は何を間違っていますか?