Skip to content

Commit

Permalink
Attempts to fix plugin check
Browse files Browse the repository at this point in the history
  • Loading branch information
vpetersson committed Dec 27, 2024
1 parent 71527f5 commit b0bd52c
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions .github/workflows/plugin-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,19 @@ jobs:
php-version: '8.0'
tools: composer

- name: Install WordPress Plugin Check
run: |
git clone https://github.com/WordPress/plugin-check.git
cd plugin-check
composer install
- name: Install dependencies
run: composer install --no-dev --optimize-autoloader

- name: Build plugin
run: ./bin/build.sh

- name: Install WordPress Plugin Check
working-directory: ${{ github.workspace }}
run: |
composer install --no-dev --optimize-autoloader
./bin/build.sh
git clone https://github.com/WordPress/plugin-check.git wp-plugin-check
cd wp-plugin-check
composer install
- name: Run Plugin Check
run: |
cd plugin-check
./bin/plugin-check check ../build/screenly-cast/
working-directory: ${{ github.workspace }}/wp-plugin-check
run: php bin/plugin-check check ../build/screenly-cast/

0 comments on commit b0bd52c

Please sign in to comment.