Skip to content

config.json: set exact default ruby version to 3.3.5 #280

config.json: set exact default ruby version to 3.3.5

config.json: set exact default ruby version to 3.3.5 #280

Workflow file for this run

name: ci-lint
on:
push:
branches: [ master, main ]
pull_request:
workflow_call:
jobs:
lint-linux:
name: Lint sources
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Yaml lint
run: |
sudo apt-get install yamllint
yamllint cimas-config/
- name: Shellcheck lint
run: |
if stat -t *.sh >/dev/null 2>&1
then
sudo apt-get install shellcheck
shellcheck *.sh
else
echo "No shell scripts files found"
fi