add standalone jw player adapter and api logic #28
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "All Pull Request Tests" | |
on: | |
pull_request: | |
branches: | |
- develop | |
types: [opened, synchronize, reopened, ready_for_review] | |
jobs: | |
pr-tests: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
php-version: ['8.2', '8.3'] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event.pull_request.number || github.ref }}-${{ matrix.php-version }} | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run General Tests | |
uses: alleyinteractive/action-test-general@develop | |
- name: Run PHP Tests | |
uses: alleyinteractive/action-test-php@develop | |
with: | |
php-version: ${{ matrix.php-version }} | |
wordpress-version: 'latest' | |
skip-wordpress-install: 'true' |