Skip to content

Test on different OSes. #8

Test on different OSes.

Test on different OSes. #8

Workflow file for this run

name: PHP CRC32
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
# No need to lint on every version, so pin this to the most recent version.
php-version: ['8.2']
steps:
- uses: actions/checkout@v3
- name: Setup PHP ${{ matrix.php-version }} with tools
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: php-cs-fixer
- name: Lint
run: make lint
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
php-version: ['7.4', '8.0', '8.1', '8.2']
steps:
- uses: actions/checkout@v3
- name: Setup PHP ${{ matrix.php-version }} with tools
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: phpunit phpize php-config
- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
run: composer install --prefer-dist
- name: Test
run: make test