Skip to content

Commit

Permalink
Avoid running phpcs on 8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriksm committed Jan 24, 2022
1 parent f8a4bf3 commit a3e00f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Expand Up @@ -44,6 +44,10 @@ jobs:
- name: Install dependencies
run: composer --verbose install

- name: Code style
if: matrix.php-version != 8.1
run: composer lint

- name: Run tests
run: composer test

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -26,7 +26,7 @@
}
},
"scripts": {
"test": "@composer lint && phpunit",
"test": "phpunit",
"lint": "phpcs -p -n"
},
"require-dev": {
Expand Down

0 comments on commit a3e00f4

Please sign in to comment.