Skip to content

docs: align repository discovery, keyword indexing, and GitHub search… #9

docs: align repository discovery, keyword indexing, and GitHub search…

docs: align repository discovery, keyword indexing, and GitHub search… #9

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
# Cancel previous runs on the same PR/branch
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality-checks:
name: Quality Checks
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go 1.25.4
uses: actions/setup-go@v5
with:
go-version: '1.25.4'
cache: true
- name: Verify toolchain infrastructure
run: |
test -f tools.go || (echo "tools.go missing" && exit 1)
test -f scripts/bootstrap.sh || (echo "bootstrap.sh missing" && exit 1)
test -f scripts/pre-commit.sh || (echo "pre-commit.sh missing" && exit 1)
- name: Bootstrap development environment
run: make bootstrap
- name: Verify dependencies are tidy
run: |
go mod tidy
git diff --exit-code go.mod go.sum
- name: Run all quality checks
run: make check
- name: Verify binary
run: |
ls -lh bin/igord
file bin/igord