-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
461 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
|
||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" | ||
groups: | ||
all-actions: | ||
patterns: ["*"] | ||
|
||
- package-ecosystem: "composer" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "daily" | ||
ignore: | ||
- dependency-name: "*" | ||
update-types: ["version-update:semver-major"] | ||
groups: | ||
production-dependencies: | ||
dependency-type: "production" | ||
dev-dependencies: | ||
dependency-type: "development" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
|
||
name: 'Lock Threads' | ||
|
||
on: # yamllint disable-line rule:truthy | ||
schedule: | ||
- cron: '0 0 1 * *' | ||
workflow_dispatch: | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
concurrency: | ||
group: lock | ||
|
||
jobs: | ||
action: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: dessant/lock-threads@v5 | ||
with: | ||
issue-inactive-days: '90' | ||
pr-inactive-days: '90' | ||
log-output: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
|
||
name: Documentation | ||
|
||
on: # yamllint disable-line rule:truthy | ||
push: | ||
branches: [master, release-*] | ||
paths: | ||
- '**.md' | ||
pull_request: | ||
branches: [master, release-*] | ||
paths: | ||
- '**.md' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
quality: | ||
name: Quality checks | ||
runs-on: [ubuntu-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Lint markdown files | ||
uses: nosborn/github-action-markdown-cli@v3 | ||
with: | ||
files: . | ||
ignore_path: .markdownlintignore | ||
|
||
- name: Perform spell check | ||
uses: codespell-project/actions-codespell@v2 | ||
with: | ||
path: '**/*.md' | ||
check_filenames: true | ||
ignore_words_list: tekst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,293 @@ | ||
--- | ||
|
||
name: CI | ||
|
||
on: # yamllint disable-line rule:truthy | ||
push: | ||
branches: ['**'] | ||
paths-ignore: | ||
- '**.md' | ||
pull_request: | ||
branches: [master, release-*] | ||
paths-ignore: | ||
- '**.md' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
linter: | ||
name: Linter | ||
runs-on: ['ubuntu-latest'] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
# super-linter needs the full git history to get the | ||
# list of files that changed across commits | ||
fetch-depth: 0 | ||
|
||
- name: Lint Code Base | ||
uses: super-linter/super-linter/slim@v7 | ||
env: | ||
# To report GitHub Actions status checks | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
LINTER_RULES_PATH: 'tools/linters' | ||
LOG_LEVEL: NOTICE | ||
VALIDATE_ALL_CODEBASE: true | ||
VALIDATE_JSON: true | ||
VALIDATE_PHP_BUILTIN: true | ||
VALIDATE_YAML: true | ||
VALIDATE_GITHUB_ACTIONS: true | ||
|
||
quality: | ||
name: Quality control | ||
runs-on: [ubuntu-latest] | ||
|
||
steps: | ||
- name: Setup PHP, with composer and extensions | ||
id: setup-php | ||
# https://github.com/shivammathur/setup-php | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
# Should be the higest supported version, so we can use the newest tools | ||
php-version: '8.3' | ||
tools: composer, composer-require-checker, composer-unused, phpcs, psalm | ||
extensions: ctype, date, dom, filter, hash, mbstring, openssl, pcre, soap, spl, xml | ||
coverage: none | ||
|
||
- name: Setup problem matchers for PHP | ||
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" | ||
|
||
- uses: actions/checkout@v4 | ||
|
||
- name: Get composer cache directory | ||
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" | ||
|
||
- name: Cache composer dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: $COMPOSER_CACHE | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: ${{ runner.os }}-composer- | ||
|
||
- name: Validate composer.json and composer.lock | ||
run: composer validate | ||
|
||
- name: Install Composer dependencies | ||
run: composer install --no-progress --prefer-dist --optimize-autoloader | ||
|
||
- name: Check code for hard dependencies missing in composer.json | ||
run: composer-require-checker check --config-file=tools/composer-require-checker.json composer.json | ||
|
||
- name: Check code for unused dependencies in composer.json | ||
run: composer-unused | ||
|
||
- name: PHP Code Sniffer | ||
run: phpcs | ||
|
||
- name: Psalm | ||
continue-on-error: true | ||
run: | | ||
psalm -c psalm.xml \ | ||
--show-info=true \ | ||
--shepherd \ | ||
--php-version=${{ steps.setup-php.outputs.php-version }} | ||
- name: Psalm (testsuite) | ||
run: | | ||
psalm -c psalm-dev.xml \ | ||
--show-info=true \ | ||
--shepherd \ | ||
--php-version=${{ steps.setup-php.outputs.php-version }} | ||
- name: Psalter | ||
run: | | ||
psalm --alter \ | ||
--issues=UnnecessaryVarAnnotation \ | ||
--dry-run \ | ||
--php-version=${{ steps.setup-php.outputs.php-version }} | ||
security: | ||
name: Security checks | ||
runs-on: [ubuntu-latest] | ||
steps: | ||
- name: Setup PHP, with composer and extensions | ||
# https://github.com/shivammathur/setup-php | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
# Should be the lowest supported version | ||
php-version: '8.2' | ||
extensions: ctype, date, dom, filter, hash, mbstring, openssl, pcre, soap, spl, xml | ||
tools: composer | ||
coverage: none | ||
|
||
- name: Setup problem matchers for PHP | ||
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" | ||
|
||
- uses: actions/checkout@v4 | ||
|
||
- name: Get composer cache directory | ||
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" | ||
|
||
- name: Cache composer dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: $COMPOSER_CACHE | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: ${{ runner.os }}-composer- | ||
|
||
- name: Install Composer dependencies | ||
run: composer install --no-progress --prefer-dist --optimize-autoloader | ||
|
||
- name: Security check for locked dependencies | ||
run: composer audit | ||
|
||
- name: Update Composer dependencies | ||
run: composer update --no-progress --prefer-dist --optimize-autoloader | ||
|
||
- name: Security check for updated dependencies | ||
run: composer audit | ||
|
||
unit-tests-linux: | ||
name: "Unit tests, PHP ${{ matrix.php-versions }}, ${{ matrix.operating-system }}" | ||
runs-on: ${{ matrix.operating-system }} | ||
needs: [linter, quality, security] | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
operating-system: [ubuntu-latest] | ||
php-versions: ['8.2', '8.3'] | ||
|
||
steps: | ||
- name: Setup PHP, with composer and extensions | ||
# https://github.com/shivammathur/setup-php | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php-versions }} | ||
extensions: ctype, date, dom, filter, hash, mbstring, openssl, pcre, soap, spl, xml | ||
tools: composer | ||
ini-values: error_reporting=E_ALL | ||
coverage: pcov | ||
|
||
- name: Setup problem matchers for PHP | ||
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" | ||
|
||
- name: Setup problem matchers for PHPUnit | ||
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | ||
|
||
- name: Set git to use LF | ||
run: | | ||
git config --global core.autocrlf false | ||
git config --global core.eol lf | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Get composer cache directory | ||
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" | ||
|
||
- name: Cache composer dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: $COMPOSER_CACHE | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: ${{ runner.os }}-composer- | ||
|
||
- name: Install Composer dependencies | ||
run: composer install --no-progress --prefer-dist --optimize-autoloader | ||
|
||
- name: Run unit tests with coverage | ||
if: ${{ matrix.php-versions == '8.3' }} | ||
run: vendor/bin/phpunit | ||
|
||
- name: Run unit tests (no coverage) | ||
if: ${{ matrix.php-versions != '8.3' }} | ||
run: vendor/bin/phpunit --no-coverage | ||
|
||
- name: Save coverage data | ||
if: ${{ matrix.php-versions == '8.3' }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: coverage-data | ||
path: ${{ github.workspace }}/build | ||
|
||
unit-tests-windows: | ||
name: "Unit tests, PHP ${{ matrix.php-versions }}, ${{ matrix.operating-system }}" | ||
runs-on: ${{ matrix.operating-system }} | ||
needs: [linter, quality, security] | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
operating-system: [windows-latest] | ||
php-versions: ['8.2', '8.3'] | ||
|
||
steps: | ||
- name: Setup PHP, with composer and extensions | ||
# https://github.com/shivammathur/setup-php | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php-versions }} | ||
extensions: ctype, date, dom, filter, hash, mbstring, openssl, pcre, soap, spl, xml | ||
tools: composer | ||
ini-values: error_reporting=E_ALL | ||
coverage: none | ||
|
||
- name: Setup problem matchers for PHP | ||
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" | ||
|
||
- name: Setup problem matchers for PHPUnit | ||
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | ||
|
||
- name: Set git to use LF | ||
run: | | ||
git config --global core.autocrlf false | ||
git config --global core.eol lf | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Get composer cache directory | ||
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV" | ||
|
||
- name: Cache composer dependencies | ||
uses: actions/cache@v4 | ||
with: | ||
path: $COMPOSER_CACHE | ||
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | ||
restore-keys: ${{ runner.os }}-composer- | ||
|
||
- name: Install Composer dependencies | ||
run: composer install --no-progress --prefer-dist --optimize-autoloader | ||
|
||
- name: Run unit tests | ||
run: vendor/bin/phpunit --no-coverage | ||
|
||
coverage: | ||
name: Code coverage | ||
runs-on: [ubuntu-latest] | ||
needs: [unit-tests-linux] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: coverage-data | ||
path: ${{ github.workspace }}/build | ||
|
||
- name: Codecov | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
fail_ci_if_error: true | ||
verbose: true | ||
|
||
cleanup: | ||
name: Cleanup artifacts | ||
needs: [unit-tests-linux, coverage] | ||
runs-on: [ubuntu-latest] | ||
if: | | ||
always() && | ||
needs.coverage.result == 'success' || | ||
(needs.unit-tests-linux.result == 'success' && needs.coverage.result == 'skipped') | ||
steps: | ||
- uses: geekyeggo/delete-artifact@v5 | ||
with: | ||
name: coverage-data |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
vendor/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"default": true, | ||
"MD013": false | ||
} |
Oops, something went wrong.