* changed the drag handle icon for mobile #123
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: PHP 8.0 | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
branches: [master, main] | |
permissions: | |
contents: read | |
jobs: | |
setup: | |
name: Scan Code | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read # for checkout to fetch code | |
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: PHP Setup | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.0-' | |
ini-values: short_open_tag=On | |
coverage: none | |
- name: Run PHP Compatibility 8.0 | |
uses: pantheon-systems/phpcompatibility-action@v1 | |
with: | |
test-versions: '8.0-' | |
paths: ${{ github.workspace }}/Plugin.php ${{ github.workspace }}/Controller/ ${{ github.workspace }}/Locale/ ${{ github.workspace }}/Helper/ ${{ github.workspace }}/Template/ |