Skip to content

Commit

Permalink
Update Github checks
Browse files Browse the repository at this point in the history
  • Loading branch information
umutphp committed Aug 14, 2023
1 parent a898fc2 commit 9e019c5
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/basic-checks.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Basic Checks
on: [push, pull_request]
on: [push]

jobs:
node-docker:
Expand Down
31 changes: 15 additions & 16 deletions .github/workflows/mardown-lint.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
name: Markdown Linter

on: [push, pull_request]
on: [push]

jobs:
phpcs:
name: Lint MD Files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Lint README
uses: nosborn/[email protected]
with:
files: README.md
config_file: "./.github/markdown.config.json"
- name: Lint CONTRIBUTING
uses: nosborn/[email protected]
with:
files: ./.github/CONTRIBUTING.md
config_file: "./.github/markdown.config.json"

name: Lint MD Files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Lint README
uses: nosborn/[email protected]
with:
files: README.md
config_file: "./.github/markdown.config.json"
- name: Lint CONTRIBUTING
uses: nosborn/[email protected]
with:
files: ./.github/CONTRIBUTING.md
config_file: "./.github/markdown.config.json"
14 changes: 7 additions & 7 deletions .github/workflows/phpcs.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Codestyle Check

on: [push, pull_request]
on: [push]

jobs:
phpcs:
name: PHPCS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: PHPCS check
uses: chekalsky/phpcs-action@v1
name: PHPCS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: PHPCS check
uses: chekalsky/phpcs-action@v1
4 changes: 2 additions & 2 deletions .github/workflows/tests-new-versions.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Tests
on: [push, pull_request]
on: [pull_request]

jobs:
test:
Expand All @@ -15,7 +15,7 @@ jobs:

name: PHP${{ matrix.php }} - Laravel${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}

runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest

steps:
- name: Checkout code
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-old-versions.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Tests
on: [push, pull_request]
on: [pull_request]

jobs:
test:
Expand All @@ -15,7 +15,7 @@ jobs:

name: PHP${{ matrix.php }} - Laravel${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}

runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest

steps:
- name: Checkout code
Expand Down

0 comments on commit 9e019c5

Please sign in to comment.