ci: add shebang to the GitLab CI

This commit is contained in:
Emil Engler 2023-01-26 21:06:52 +01:00
parent 53bf3492e8
commit 9357a8fd6b
No known key found for this signature in database
GPG Key ID: 2F6D4145C55FC7C7
1 changed files with 2 additions and 1 deletions

View File

@ -32,7 +32,7 @@ maint-checks:
stage: check stage: check
image: debian:stable-slim image: debian:stable-slim
script: script:
- apt-get update && apt-get install -y python3-toml python-is-python3 - apt-get update && apt-get install -y python3-toml python-is-python3 git
- ./maint/check_toposort - ./maint/check_toposort
- ./maint/add_warning --check - ./maint/add_warning --check
@ -46,6 +46,7 @@ doc-features:
script: script:
- apt-get update && apt-get install -y python3-toml python-is-python3 - apt-get update && apt-get install -y python3-toml python-is-python3
- ./maint/check_doc_features - ./maint/check_doc_features
- ./maint/shebang
rust-checks: rust-checks:
# This is too slow (and the cacheing of the "cargo build" too flaky) to be a "check" # This is too slow (and the cacheing of the "cargo build" too flaky) to be a "check"