Skip to content

Commit

Permalink
Merge pull request #104 from utopia-php/fix-router-behaviour
Browse files Browse the repository at this point in the history
Fix router execution action
  • Loading branch information
christyjacob4 authored Aug 7, 2023
2 parents 1c8ed95 + fbbb6b5 commit 0969d42
Show file tree
Hide file tree
Showing 8 changed files with 225 additions and 257 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'

- name: Install dependencies
run: composer install --prefer-dist

- name: Run Benchmarks
run: composer bench -- --progress=plain
- name: Run Linter
run: |
docker run --rm -v $PWD:/app composer sh -c \
"composer install --profile --ignore-platform-reqs && git config --global --add safe.directory /app && composer bench -- --progress=plain"
4 changes: 0 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 2

- run: git checkout HEAD^2

- name: Run CodeQL
run: |
Expand Down
12 changes: 3 additions & 9 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'

- name: Install dependencies
run: composer install --prefer-dist

- name: Run Linter
run: composer lint
run: |
docker run --rm -v $PWD:/app composer sh -c \
"composer install --profile --ignore-platform-reqs && composer lint"
Loading

0 comments on commit 0969d42

Please sign in to comment.