Skip to content

Commit

Permalink
fixed accidentally replaced instances of "run"
Browse files Browse the repository at this point in the history
  • Loading branch information
k00ni committed Apr 2, 2024
1 parent 4d1d17d commit bcc7623
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ContinuousIntegration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
CI:
scriptss-on: ubuntu-latest
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v3
Expand All @@ -18,15 +18,15 @@ jobs:

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

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

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

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

0 comments on commit bcc7623

Please sign in to comment.