Skip to content

Commit

Permalink
adds step in the pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
vigneshk-tw committed Oct 7, 2024
1 parent 98e082b commit d588de2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,13 @@ jobs:

- name: Validate PHP Syntax
run: find . -path ./vendor -prune -o -name "*.php" -exec php -l {} \; > /dev/null || exit 1
working-directory: xero-php-oauth2

- name: Check for Vulnerabilities
run: |
composer audit || exit 1
working-directory: xero-php-oauth2

- name: Check for Outdated Packages
run: composer outdated
working-directory: xero-php-oauth2

0 comments on commit d588de2

Please sign in to comment.