Skip to content

feat: make repo AI-ready #3

feat: make repo AI-ready

feat: make repo AI-ready #3

Workflow file for this run

name: CI
on:
pull_request:
paths-ignore:
- '**.md'
- 'LICENSE'
- '.github/FUNDING.yml'
push:
branches:
- main
paths-ignore:
- '**.md'
- 'LICENSE'
- '.github/FUNDING.yml'
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Install shellcheck
run: sudo apt-get update -qq && sudo apt-get install -y shellcheck
- name: Run shellcheck on all scripts
run: |
find . -name "*.sh" -not -path "./.git/*" | sort | xargs shellcheck \
--severity=warning \
--exclude=SC2034,SC1091 \
--shell=bash