Skip to content

Commit

Permalink
fix(Repo): Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
4513 committed Jan 12, 2024
1 parent 2497cc5 commit dc4d4fe
Show file tree
Hide file tree
Showing 8 changed files with 68 additions and 39 deletions.
36 changes: 0 additions & 36 deletions .github/workflows/main.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/min-stability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- "**"
pull_request:
branches: [ "master" ]
branches: [ "main" ]

permissions:
contents: read
Expand All @@ -27,4 +27,4 @@ jobs:
run: composer update --prefer-dist --no-progress --prefer-lowest

- name: PHPUnit
run: ./vendor/bin/phpunit
run: ./vendor/bin/phpunit --testsuite Full
5 changes: 5 additions & 0 deletions .github/workflows/phpcodesniffer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'

- name: Composer Install
run: composer install --prefer-dist --no-progress

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/phpcoverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'

- name: Composer Install
run: composer install --prefer-dist --no-progress

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'

- name: Composer Install
run: composer install --prefer-dist --no-progress

Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- "**"
pull_request:
branches: [ "master" ]
branches: [ "main" ]
schedule:
- cron: "0 1 * * *"

Expand All @@ -20,6 +20,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'

- name: Composer Install
run: composer install --prefer-dist --no-progress

Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/vendor-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Vendor Check

on:
push:
branches:
- "main"
schedule:
- cron: "0 1 * * *"

permissions:
contents: read

jobs:
standard:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'

- name: Composer Install
run: composer install

- name: Check new major versions of vendor libs
run: composer outdated
15 changes: 15 additions & 0 deletions .idea/php-docker-settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit dc4d4fe

Please sign in to comment.