Skip to content
Snippets Groups Projects

Draft: Fix shell ci

Closed Philippe Caseiro requested to merge fix-shell-ci into master
3 files
+ 519
1
Compare changes
  • Side-by-side
  • Inline
Files
3
.gitlab-ci.yml 0 → 100644
+ 37
0
# Gitlab-ci configuration
stages:
- build
- test
- run
shell format:
image: mvdan/shfmt:v3.2.0-alpine
stage: test
before_script:
- shfmt -version
script:
- shfmt -i 2 -ci -d .
shell check:
image: koalaman/shellcheck-alpine:stable
stage: test
before_script:
- shellcheck --version
script:
- shellcheck *.sh
shell run k3d:
stage: run
script:
- pwd
- ls -l .
tags:
- ubuntu shell eole
shell run microk8s:
stage: run
script:
- pwd
- ls -l .
tags:
- ubuntu shell eole
Loading