-
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.
Merge pull request #17 from slub/dev
Dev
- Loading branch information
Showing
30 changed files
with
4,264 additions
and
6 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,47 @@ | ||
--- | ||
name: CI | ||
on: | ||
push: | ||
jobs: | ||
code-quality: | ||
name: "Code quality checks" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Checkout" | ||
uses: actions/checkout@v4 | ||
- name: "Install Composer dependencies" | ||
run: "composer ci:install" | ||
- name: "Run command" | ||
run: "composer ci:php:stan" | ||
|
||
unit-tests: | ||
name: Unit Tests | ||
runs-on: ubuntu-latest | ||
needs: [ code-quality ] | ||
steps: | ||
- name: "Checkout" | ||
uses: actions/checkout@v4 | ||
- name: "Setup PHP" | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 8.2 | ||
- name: "Install Composer dependencies" | ||
run: "composer ci:install" | ||
- name: "Run the tests" | ||
run: "composer ci:tests:unit" | ||
|
||
functional-tests: | ||
name: Functional Tests | ||
runs-on: ubuntu-latest | ||
needs: [ code-quality ] | ||
steps: | ||
- name: "Checkout" | ||
uses: actions/checkout@v4 | ||
- name: "Setup PHP" | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: 8.2 | ||
- name: "Install Composer dependencies" | ||
run: "composer update --no-progress" | ||
- name: "Run the tests" | ||
run: "composer ci:tests:functional" |
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,9 @@ | ||
.idea/ | ||
.cache | ||
Build/testing-docker/.env | ||
bin/ | ||
public/ | ||
typo3temp/ | ||
vendor/ | ||
composer.lock | ||
Tests/Testfiles/*.json |
Oops, something went wrong.