Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ebitkov/build-symfony-bundle
GitHub Action for building and testing Symfony bundles.
https://github.com/ebitkov/build-symfony-bundle
action bundle github-action symfony symfony-bundle
Last synced: about 1 month ago
JSON representation
GitHub Action for building and testing Symfony bundles.
- Host: GitHub
- URL: https://github.com/ebitkov/build-symfony-bundle
- Owner: ebitkov
- License: mit
- Created: 2023-11-12T19:01:01.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-15T17:21:52.000Z (about 1 year ago)
- Last Synced: 2024-09-30T16:21:15.235Z (about 2 months ago)
- Topics: action, bundle, github-action, symfony, symfony-bundle
- Language: PHP
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Build Symfony Bundle Action
This actions creates a blank Symfony project, installs the bundle in a `bundle` subdirectory and installs it with
Composer to run its tests in a real application.## Usage
```yaml
- uses: ebitkov/build-symfony-bundle@v1
with:
# Whether to run the tests with PHPUnit
# Default: true
run-tests: ''# PHP version to use.
# Default: 8.2
php-version:# PHP extensions to install.
# String in CSV format.
# Default: 'mbstring, xml, ctype, iconv, intl, pdo, pdo_mysql, dom, filter, gd, json'
php-extensions: ''# Additional options passed to Composer on installation.
# --no-interaction --no-progress --ansi are added automatically.
# Default: '--prefer-dist'
composer-options: ''# Additional Composer dependencies to install.
# Runs after the main installation.
# Accepts flex aliases and full package names with version constraints.
# Multiple dependencies can be defined as space-separated (e.g. 'twig symfony/doctrine-bundle')
# Default: null
composer-additional-dependencies: ''# Symfony version to use.
# Default: 6.3
symfony-version: ''# Repository to install as a bundle.
# Mainly used internally for testing.
# Default: ${{ github.repository }}
repository: ''# Bundle name as a Composer dependency: {vendor}/{package}.
# Useful, if your package name differs from your repository path.
# Mainly used internally for testing.
# Default: ${{ github.repository }}
bundle-name:
```