Skip to content

Best practices applied to all remaining files #1

Best practices applied to all remaining files

Best practices applied to all remaining files #1

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint-and-smoke:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y shellcheck
- name: Shellcheck
run: shellcheck src/*.sh launch.sh || true
- name: Smoke run
run: |
bash -lc 'bash -n launch.sh'