-
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
Matthias Richter
committed
Mar 14, 2024
1 parent
7f0e6c4
commit 59317e6
Showing
11 changed files
with
1,410 additions
and
1 deletion.
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,39 @@ | ||
--- | ||
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: "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: "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 |
---|---|---|
@@ -1 +1,8 @@ | ||
.idea | ||
.idea/ | ||
.cache | ||
Build/testing-docker/.env | ||
bin/ | ||
public/ | ||
typo3temp/ | ||
vendor/ | ||
composer.lock |
Oops, something went wrong.