build: use ubuntu-lts-latest in readthedocs build #58
Workflow file for this run
This file contains hidden or 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: 'WordPress Plugin Check' | |
| on: | |
| pull_request | |
| jobs: | |
| check: | |
| name: Plugin Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Install Composer dependencies | |
| uses: ramsey/composer-install@v3 | |
| with: | |
| composer-options: "--no-dev" | |
| - name: Prepare the openedx-commerce directory for the release | |
| run: | | |
| make release | |
| - name: Run plugin check | |
| uses: wordpress/plugin-check-action@v1 | |
| with: | |
| build-dir: './openedx-commerce' |