-
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create back-end.yml #4
Open
szepeviktor
wants to merge
6
commits into
master
Choose a base branch
from
szepeviktor-patch-1
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
6f47cef
Create back-end.yml
szepeviktor 196de14
Update back-end.yml
szepeviktor 0005f91
Create phpstan.neon.dist
szepeviktor 0d4388d
Update composer.json
szepeviktor 0502464
Update phpstan.neon.dist
szepeviktor 7e9cff2
Update back-end.yml
szepeviktor File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,180 @@ | ||
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow | ||
|
||
name: "Back-end" | ||
|
||
on: | ||
pull_request: null | ||
push: | ||
branches: | ||
- "master" | ||
# Add [skip ci] to commit message to skip CI. | ||
|
||
permissions: | ||
contents: "read" | ||
|
||
concurrency: | ||
group: "${{ github.workflow }}-${{ github.ref }}" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
syntax_errors: | ||
name: "1️⃣ Syntax errors" | ||
runs-on: "ubuntu-22.04" | ||
timeout-minutes: 5 | ||
steps: | ||
- | ||
name: "Set up PHP" | ||
uses: "shivammathur/setup-php@v2" | ||
with: | ||
php-version: "8.2" | ||
extensions: "dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, fileinfo, exif" | ||
coverage: "none" | ||
tools: "parallel-lint" | ||
- | ||
name: "Checkout repository" | ||
uses: "actions/checkout@v4" | ||
- | ||
name: "Search for invalid complex curly syntax 🐌" | ||
run: | | ||
! git grep -e '\${[A-Z_a-z]' -- '*.php' '*.scss' | ||
- | ||
name: "Check source code for syntax errors" | ||
run: "composer exec --no-interaction -- parallel-lint src/ #tests/" | ||
|
||
unit_tests: | ||
name: "2️⃣ Unit and functional tests" | ||
# TODO We have no unit test. | ||
if: false | ||
needs: | ||
- "syntax_errors" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php-version: | ||
- "8.2" | ||
- "8.3" | ||
dependencies: | ||
- "lowest" | ||
- "locked" | ||
- "highest" | ||
runs-on: "ubuntu-22.04" | ||
timeout-minutes: 5 | ||
steps: | ||
- | ||
name: "Set up PHP" | ||
uses: "shivammathur/setup-php@v2" | ||
with: | ||
php-version: "${{ matrix.php-version }}" | ||
extensions: "dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, fileinfo, exif" | ||
- | ||
name: "Setup problem matcher for PHPUnit" | ||
run: | | ||
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | ||
- | ||
name: "Checkout repository" | ||
uses: "actions/checkout@v4" | ||
- | ||
name: "Install dependencies" | ||
uses: "ramsey/composer-install@v2" | ||
with: | ||
dependency-versions: "${{ matrix.dependencies }}" | ||
- | ||
name: "Execute unit tests" | ||
run: "composer exec -- phpunit" | ||
- | ||
name: "Tests have failed: upload logs" | ||
if: "${{ failure() }}" | ||
uses: "actions/upload-artifact@v3" | ||
with: | ||
path: "storage/logs/" | ||
name: "laravel-logs-${{ matrix.php-version }}-${{ matrix.dependencies }}" | ||
- | ||
name: "Send coverage to Coveralls" | ||
env: | ||
COVERALLS_REPO_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | ||
if: "${{ env.COVERALLS_REPO_TOKEN && matrix.php-version == '8.2' && matrix.dependencies == 'locked' }}" | ||
run: | | ||
wget --no-verbose \ | ||
"https://github.com/php-coveralls/php-coveralls/releases/download/v2.5.3/php-coveralls.phar" | ||
php ./php-coveralls.phar --verbose | ||
|
||
static_analysis: | ||
name: "3️⃣ Static Analysis" | ||
needs: | ||
- "syntax_errors" | ||
runs-on: "ubuntu-22.04" | ||
timeout-minutes: 5 | ||
steps: | ||
- | ||
name: "Set up PHP" | ||
uses: "shivammathur/setup-php@v2" | ||
with: | ||
php-version: "8.2" | ||
extensions: "dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, fileinfo, exif" | ||
coverage: "none" | ||
- | ||
name: "Checkout repository" | ||
uses: "actions/checkout@v4" | ||
- | ||
name: "Check JSON files" | ||
run: | | ||
git ls-files --cached -z -- '*.json' \ | ||
| xargs -t --null -L 1 -- \ | ||
php -r 'json_decode(file_get_contents($argv[1]), null, 512, JSON_THROW_ON_ERROR);' | ||
- | ||
name: "Validate Composer configuration" | ||
run: "composer validate --no-interaction --strict" | ||
- | ||
name: "Install dependencies" | ||
uses: "ramsey/composer-install@v2" | ||
with: | ||
dependency-versions: "locked" | ||
- | ||
name: "Check PSR-4 mapping 🐌" | ||
run: "composer dump-autoload --dev --optimize --strict-psr" | ||
- | ||
# https://github.com/phpstan/phpstan/issues/9475 | ||
name: "Search for $this->$this typo 🐌" | ||
run: | | ||
! git grep --line-number -e '\$this\s*->\s*\$this' -- ':!:*/back-end\.yml' | ||
- | ||
name: "Install orchestra/testbench" | ||
run: "composer require --dev orchestra/testbench" | ||
- | ||
name: "Perform static analysis" | ||
run: "composer exec -- phpstan || true 'Annotate only'" | ||
|
||
coding_standards: | ||
name: "4️⃣ Coding Standards" | ||
needs: | ||
- "syntax_errors" | ||
runs-on: "ubuntu-22.04" | ||
timeout-minutes: 5 | ||
steps: | ||
- | ||
name: "Set up PHP" | ||
uses: "shivammathur/setup-php@v2" | ||
with: | ||
php-version: "8.2" | ||
extensions: "dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, fileinfo, exif" | ||
coverage: "none" | ||
tools: "phpcs,cs2pr" | ||
- | ||
name: "Checkout repository" | ||
uses: "actions/checkout@v4" | ||
- | ||
name: "Install dependencies" | ||
uses: "ramsey/composer-install@v2" | ||
with: | ||
dependency-versions: "locked" | ||
#- | ||
# name: "Detect coding standards violations" | ||
# run: "composer exec -- phpcs -q --report=checkstyle --standard=PSR12 src/ | cs2pr" | ||
- | ||
name: "Detect coding standards violations" | ||
id: "pint" | ||
run: "composer exec -- pint --verbose --test" | ||
- | ||
name: "Annotate Pint results" | ||
if: "${{ failure() && steps.pint.outcome == 'failure' }}" | ||
run: "composer exec -- pint --test --format=checkstyle | cs2pr" |
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
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,7 @@ | ||
includes: | ||
- vendor/larastan/larastan/extension.neon | ||
parameters: | ||
paths: | ||
- src/ | ||
level: 5 | ||
checkMissingIterableValueType: false |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We badly need tests.