[Versioning] Re-use the existing CurlClient for version checking #229
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: "Validate" | |
on: [ "pull_request" ] | |
jobs: | |
linting: | |
name: "Linting (PHP ${{ matrix.php-versions }})" | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-versions: [ '8.0', '8.1' ] | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
- name: "Setup PHP, with composer and extensions" | |
uses: "shivammathur/setup-php@v2" # https://github.com/shivammathur/setup-php | |
with: | |
php-version: "${{ matrix.php-versions }}" | |
extensions: "mbstring, xml, ctype, iconv, intl, gd" | |
tools: "composer:v2" | |
- name: "Get composer cache directory" | |
id: "composer-cache" | |
run: 'echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT' | |
- name: "Cache composer dependencies" | |
uses: "actions/cache@v4" | |
with: | |
path: "${{ steps.composer-cache.outputs.dir }}" | |
key: "${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}" | |
restore-keys: "${{ runner.os }}-composer-" | |
- name: "Validate composer" | |
run: "composer validate" | |
- name: "Install Composer dependencies" | |
run: "composer install --prefer-dist --no-progress --no-suggest --optimize-autoloader" | |
# Ensure our code looks proper | |
- name: "Lint the code" | |
run: "make lint" |