https://github.com/jackd248/reusable-github-actions
🧩 Collection of useful GitHub Action workflows.
https://github.com/jackd248/reusable-github-actions
github-actions
Last synced: 12 months ago
JSON representation
🧩 Collection of useful GitHub Action workflows.
- Host: GitHub
- URL: https://github.com/jackd248/reusable-github-actions
- Owner: jackd248
- License: gpl-3.0
- Created: 2025-07-24T15:46:25.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-25T09:58:10.000Z (about 1 year ago)
- Last Synced: 2025-07-25T12:07:29.461Z (about 1 year ago)
- Topics: github-actions
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Reusable GitHub Actions
[](LICENSE.md)
[]()
This repository provides useful GitHub Action workflows for use in my personal projects. It is not meant to be used anywhere else.
## 🧩 Workflows
## CGL
Comprehensive code quality workflow that validates composer dependencies, runs linting (PHP, composer.json, editorconfig), performs static code analysis and checks rector migrations.
```yaml
name: CGL
on:
push:
branches:
- '**'
jobs:
cgl:
uses: jackd248/reusable-github-actions/.github/workflows/cgl.yml@main
```
Input|Type| Required |Description
-|-|----------|-
`php-version`|input| false |PHP version to use for the CGL check. Defaults to `8.3`.
## Tests
Matrix testing workflow that runs tests across multiple PHP and TYPO3 versions with both highest and lowest dependencies. Includes optional coverage reporting to CodeClimate and Coveralls.
```yaml
name: Tests
on:
push:
branches:
- '**'
jobs:
tests:
uses: jackd248/reusable-github-actions/.github/workflows/tests.yml@main
```
Input|Type| Required |Description
-|-|----------|-
`php-versions`|input| false |PHP versions as JSON array. Defaults to `["8.2", "8.3", "8.4"]`.
`typo3-versions`|input| false |TYPO3 versions as JSON array. Defaults to `["11.5", "12.4", "13.4"]`.
`dependencies`|input| false |Dependencies as JSON array. Defaults to `["highest", "lowest"]`.
```yaml
name: Tests
on:
push:
branches:
- '**'
jobs:
tests:
uses: jackd248/reusable-github-actions/.github/workflows/tests.yml@main
with:
php-versions: '["8.2", "8.3", "8.4"]'
typo3-versions: '["11.5", "12.4", "13.4"]'
dependencies: '["highest", "lowest"]'
```
### Optional Coverage Reporting
The Tests workflow includes optional coverage reporting to external services:
- **CodeClimate**: Set `CC_TEST_REPORTER_ID` secret to enable
If these secrets are not configured, the coverage steps will be skipped without causing workflow failures.
## ⭐ License
This project is licensed under [GNU General Public License 3.0 (or later)](LICENSE.md).