Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/install-sh-check.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Check install.sh

on:
push:
branches: [main]
pull_request:

jobs:
Expand Down
44 changes: 44 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Tests

on:
push:
branches: [main]
pull_request:

jobs:
tests:
name: Test suite
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Run lib unit tests
run: bash tests/lib_unit_test.sh

- name: Run mocked run_index smoke tests
run: bash tests/run_index_mock_smoke.sh

- name: Run atomic index mid-run failure tests
run: bash tests/atomic_index_midrun_failure_test.sh

- name: Run embed env hardening tests
run: bash tests/embed_env_hardening_test.sh

- name: Run empty repo tests
run: bash tests/empty_repo_test.sh

- name: Run grep fallback tests
run: bash tests/grep_fallback_test.sh

- name: Run trap cleanup tests
run: bash tests/trap_cleanup_test.sh

- name: Run render PDF smoke tests
run: bash tests/render_pdf_smoke_test.sh

- name: Run render system map smoke tests
run: bash tests/render_system_map_smoke_test.sh

- name: Run manifest integrity tests
run: bash tests/manifest_integrity_test.sh
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# vibe-code-audit

[![Tests](https://github.com/codesoda/vibe-code-audit/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/codesoda/vibe-code-audit/actions/workflows/tests.yml)

Repo-wide audit skill for "vibe-coded" codebases (parallel feature development, semantic duplication, inconsistent cross-cutting concerns, and architectural drift).

## Prerequisites
Expand Down