Skip to content

Use array_replace to allow partial emoji array #16

Use array_replace to allow partial emoji array

Use array_replace to allow partial emoji array #16

Workflow file for this run

name: Test code
on:
push:
pull_request:
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Cache Composer dependencies
uses: actions/cache@v2
with:
path: /tmp/composer-cache
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
- name: Install PHP dependencies through Composer
uses: php-actions/composer@v6
- name: Check code using PHP_CodeSniffer
run: composer check-code
- name: Run tests using PHPUnit
run: composer test
env:
TELEGRAM_TOKEN: '${{ secrets.TELEGRAM_TOKEN }}'
TELEGRAM_CHAT_ID: '${{ secrets.TELEGRAM_CHAT_ID }}'