-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Maintenance: github actions, makefile, git ignores
- Loading branch information
Showing
10 changed files
with
78 additions
and
70 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 |
---|---|---|
@@ -1,11 +1,10 @@ | ||
# Not archived | ||
.docs export-ignore | ||
tests export-ignore | ||
.github export-ignore | ||
.editorconfig export-ignore | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.travis.yml export-ignore | ||
Makefile export-ignore | ||
phpstan.neon export-ignore | ||
README.md export-ignore | ||
phpstan.neon export-ignore | ||
ruleset.xml export-ignore | ||
tests export-ignore |
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,15 +1,18 @@ | ||
name: "Codesniffer" | ||
|
||
on: | ||
pull_request: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
push: | ||
branches: ["*"] | ||
push: | ||
branches: [ "*" ] | ||
|
||
schedule: | ||
- cron: "0 8 * * 1" | ||
schedule: | ||
- cron: "0 8 * * 1" | ||
|
||
jobs: | ||
codesniffer: | ||
name: "Codesniffer" | ||
uses: contributte/.github/.github/workflows/codesniffer.yml@v1 | ||
codesniffer: | ||
name: "Codesniffer" | ||
uses: contributte/.github/.github/workflows/codesniffer.yml@master | ||
with: | ||
php: "8.2" |
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,15 +1,18 @@ | ||
name: "Coverage" | ||
|
||
on: | ||
pull_request: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
push: | ||
branches: ["*"] | ||
push: | ||
branches: [ "*" ] | ||
|
||
schedule: | ||
- cron: "0 8 * * 1" | ||
schedule: | ||
- cron: "0 8 * * 1" | ||
|
||
jobs: | ||
coverage: | ||
name: "Nette Tester" | ||
uses: contributte/.github/.github/workflows/nette-tester-coverage.yml@v1 | ||
coverage: | ||
name: "Nette Tester" | ||
uses: contributte/.github/.github/workflows/nette-tester-coverage-v2.yml@master | ||
with: | ||
php: "8.2" |
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,15 +1,18 @@ | ||
name: "Phpstan" | ||
|
||
on: | ||
pull_request: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
push: | ||
branches: ["*"] | ||
push: | ||
branches: [ "*" ] | ||
|
||
schedule: | ||
- cron: "0 8 * * 1" | ||
schedule: | ||
- cron: "0 8 * * 1" | ||
|
||
jobs: | ||
phpstan: | ||
name: "Phpstan" | ||
uses: contributte/.github/.github/workflows/phpstan.yml@v1 | ||
phpstan: | ||
name: "Phpstan" | ||
uses: contributte/.github/.github/workflows/phpstan.yml@master | ||
with: | ||
php: "8.2" |
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,30 +1,37 @@ | ||
name: "Nette Tester" | ||
|
||
on: | ||
pull_request: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
push: | ||
branches: ["*"] | ||
push: | ||
branches: [ "*" ] | ||
|
||
schedule: | ||
- cron: "0 8 * * 1" | ||
schedule: | ||
- cron: "0 8 * * 1" | ||
|
||
jobs: | ||
test82: | ||
name: "Nette Tester" | ||
uses: contributte/.github/.github/workflows/nette-tester.yml@v1 | ||
with: | ||
php: "8.2" | ||
test83: | ||
name: "Nette Tester" | ||
uses: contributte/.github/.github/workflows/nette-tester.yml@master | ||
with: | ||
php: "8.3" | ||
|
||
test81: | ||
name: "Nette Tester" | ||
uses: contributte/.github/.github/workflows/nette-tester.yml@v1 | ||
with: | ||
php: "8.1" | ||
test82: | ||
name: "Nette Tester" | ||
uses: contributte/.github/.github/workflows/nette-tester.yml@master | ||
with: | ||
php: "8.2" | ||
|
||
test80: | ||
name: "Nette Tester" | ||
uses: contributte/.github/.github/workflows/nette-tester.yml@v1 | ||
with: | ||
php: "8.0" | ||
composer: "composer update --no-interaction --no-progress --prefer-dist --prefer-stable --prefer-lowest" | ||
test81: | ||
name: "Nette Tester" | ||
uses: contributte/.github/.github/workflows/nette-tester.yml@master | ||
with: | ||
php: "8.1" | ||
|
||
test80: | ||
name: "Nette Tester" | ||
uses: contributte/.github/.github/workflows/nette-tester.yml@master | ||
with: | ||
php: "8.0" | ||
composer: "composer update --no-interaction --no-progress --prefer-dist --prefer-stable --prefer-lowest" |
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
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 |
---|---|---|
|
@@ -15,7 +15,4 @@ parameters: | |
- src | ||
- .docs | ||
|
||
excludePaths: | ||
- src/DI/SentryExtension24.php | ||
|
||
ignoreErrors: |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.