Skip to content

Add drift detection tooling: Vale, spec-check, link-check (032) (#114) #74

Add drift detection tooling: Vale, spec-check, link-check (032) (#114)

Add drift detection tooling: Vale, spec-check, link-check (032) (#114) #74

Workflow file for this run

name: Tests
on:
push:
branches: [main]
paths: ['scripts/**', 'Makefile', 'Brewfile']
pull_request:
branches: [main]
paths: ['scripts/**', 'Makefile', 'Brewfile']
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install shellcheck
run: sudo apt-get install -y shellcheck
- name: Lint scripts
run: shellcheck scripts/bootstrap.sh scripts/gateway-setup.sh scripts/audit-cron.sh scripts/audit-notify.sh
makefile-syntax:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Verify Makefile targets exist
run: make -n help