wp-github-updater/.gitignore
Miguel Colmenares f31cc17129 Fix GitHub Actions workflow: include phpunit.xml and correct PHPUnit syntax
- Remove phpunit.xml from .gitignore to make it available in CI
- Add phpunit.xml to repository for consistent test configuration
- Fix PHPUnit command syntax (remove --verbose, use --configuration=)
- Improve debugging output in workflow
- Ensure test configuration is available during CI execution
2025-08-12 23:08:34 -05:00

26 lines
281 B
Text

# Composer package files
/vendor/
composer.lock
# PHPUnit
# /phpunit.xml # Keep phpunit.xml for CI/CD workflow
/.phpunit.result.cache
# Code coverage
/coverage/
# IDE files
/.vscode/
/.idea/
*.swp
*.swo
# OS files
.DS_Store
Thumbs.db
# Logs
*.log
# Cache files
.phpcs-cache