Skip to content

Commit

Permalink
updated workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
k00ni committed Apr 2, 2024
1 parent bcc7623 commit c3fc37e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ContinuousIntegration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:

# Validate composer.json
- name: Validate Composer files
runs: cd scripts && composer validate --no-check-all --strict
run: cd scripts && composer validate --no-check-all --strict

# Setup PHP environment (install dependencies etc.)
- name: Install Composer dependencies
runs: cd scripts && composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader
run: cd scripts && composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader

# Static code analyser
- name: Static Code Analysis
runs: cd scripts && vendor/bin/phpstan analyse
run: cd scripts && vendor/bin/phpstan analyse

# CSV linter
- name: Lint index.csv
Expand Down

0 comments on commit c3fc37e

Please sign in to comment.