Skip to content

renamed to Allow2php-service #1

renamed to Allow2php-service

renamed to Allow2php-service #1

Workflow file for this run

name: Publish
on:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: curl, json, hash
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run tests
run: vendor/bin/phpunit
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
body: |
## Installation
```bash
composer require allow2/allow2-service
```
See [Packagist](https://packagist.org/packages/allow2/allow2-service) for details.