Skip to content

Bump version to 4.0.1 #91

Bump version to 4.0.1

Bump version to 4.0.1 #91

Workflow file for this run

name: Simple Nix Flakes powered php ci.
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
php: [php80, php81, php82]
steps:
- uses: actions/checkout@v2
with:
# Nix Flakes doesn't work on shallow clones
fetch-depth: 0
- uses: cachix/install-nix-action@v18
- name: Cache Composer dependencies
uses: actions/cache@v2
with:
path: /home/runner/.cache/composer
key: ${{ runner.os }}-composer-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- run: |
rm -fr vendor
nix shell .github#env-${{ matrix.php }} --command composer ci-prepare
nix shell .github#env-${{ matrix.php }} --command composer ci