Skip to content

chore: bump phel-lang to 0.41.0 #15

chore: bump phel-lang to 0.41.0

chore: bump phel-lang to 0.41.0 #15

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
tests:
name: Tests (PHP ${{ matrix.php }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['8.4', '8.5']
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
tools: composer
- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-php${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
restore-keys: ${{ runner.os }}-php${{ matrix.php }}-composer-
- name: Install dependencies
run: composer install --no-interaction --no-ansi --no-progress
- name: Run phel tests
run: composer test