ci: temporarily disable unit and integration tests

Disabling unit and integration test jobs to save GitHub Actions minutes
while troubleshooting installer test failures in Docker containers.

This reduces CI runtime from ~4-5 minutes to ~1 minute per run.

To re-enable: remove the 'if: false' lines from unit-tests and
integration-tests jobs in .github/workflows/test.yml
This commit is contained in:
torlando-tech 2025-10-29 10:18:45 -04:00
commit 5feb5a9af1

View file

@ -10,6 +10,7 @@ jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-latest
if: false # Temporarily disabled to save CI minutes while troubleshooting installer tests
strategy:
matrix:
@ -61,6 +62,7 @@ jobs:
integration-tests:
name: Integration Tests
runs-on: ubuntu-latest
if: false # Temporarily disabled to save CI minutes while troubleshooting installer tests
strategy:
matrix: