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
7 changes: 3 additions & 4 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -325,20 +325,19 @@ jobs:

- name: Check file permissions
run: |
find . -type f -perm /111 -name "*.sh" | head -10 || true
find . -type f -perm /111 -name "*.sh" | head -10

- name: Check TODO/FIXME
run: |
echo "=== TODOs ==="
grep -rn "TODO\|FIXME\|HACK\|XXX" --include="*.rs" --include="*.res" --include="*.py" --include="*.ex" . | head -20 || echo "None found"
grep -rn "TODO\|FIXME\|HACK\|XXX" --include="*.rs" --include="*.py" --include="*.ex" . | head -20

- name: Check for large files
run: |
find . -type f -size +1M -not -path "./.git/*" | head -10 || echo "No large files"
find . -type f -size +1M -not -path "./.git/*" | head -10

- name: EditorConfig check
uses: editorconfig-checker/action-editorconfig-checker@v2.2.0
continue-on-error: true

docs:
runs-on: ubuntu-latest
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ jobs:
- name: Install dependencies
run: mix deps.get

- name: Elixir lint gate
run: mix compile --warnings-as-errors

- name: Run E2E test suite
run: bash tests/e2e.sh

Expand Down Expand Up @@ -92,7 +95,7 @@ jobs:
echo ' runs-on: ubuntu-latest' >> /tmp/test-repo/.github/workflows/ci.yml
echo ' steps:' >> /tmp/test-repo/.github/workflows/ci.yml
echo ' - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.2.2' >> /tmp/test-repo/.github/workflows/ci.yml
./target/release/hyper scan /tmp/test-repo 2>&1 || true
./target/release/hypatia scan /tmp/test-repo 2>&1
echo "PASS: Rust CLI scan completed"

aspect-tests:
Expand Down
Loading