Skip to content

Change GitHub Actions platform to latest Ubuntu version. #7

Change GitHub Actions platform to latest Ubuntu version.

Change GitHub Actions platform to latest Ubuntu version. #7

Workflow file for this run

---
name: Linting PHP
on:
- push
- pull_request
# Allow manually triggering the workflow.
- workflow_dispatch
# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-php:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: pipeline-components/php-linter@master