Skip to content

Commit 0b925b6

Browse files
authored
Merge pull request #1 from idanoo/action_test
2.1.2 (2023-03-22) - Composer update / Update git information (GitHub)
2 parents c696723 + 575509f commit 0b925b6

File tree

4 files changed

+136
-91
lines changed

4 files changed

+136
-91
lines changed

.github/workflows/ci.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: CI
2+
on: [push]
3+
jobs:
4+
Linter:
5+
runs-on: ubuntu-latest
6+
container: php:8.2
7+
steps:
8+
- uses: actions/checkout@v3
9+
- name: Install composer
10+
run: apt-get update -yq && apt-get install git wget procps unzip -y && pecl install -o -f redis && rm -rf /tmp/pear && docker-php-ext-enable redis && wget https://getcomposer.org/composer.phar && php composer.phar install --dev
11+
- name: Validate composer.json and composer.lock
12+
run: php composer.phar validate --strict
13+
- name: Install dependencies
14+
run: php composer.phar install --dev --prefer-dist --no-progress
15+
- name: Run PHPCS Linter
16+
run: php -d memory_limit=256M vendor/bin/phpcs -s --standard=ruleset.xml
17+
PHPTest:
18+
runs-on: ubuntu-latest
19+
container: php:${{ matrix.php_version }}
20+
strategy:
21+
matrix:
22+
php_version: [7.4, 8.0, 8.1, 8.2]
23+
services:
24+
redis:
25+
image: redis:7.0
26+
options: >-
27+
--health-cmd "redis-cli ping"
28+
--health-interval 10s
29+
--health-timeout 5s
30+
--health-retries 5
31+
steps:
32+
- uses: actions/checkout@v3
33+
- name: Install composer
34+
run: apt-get update -yq && apt-get install git wget procps unzip -y && pecl install -o -f redis && rm -rf /tmp/pear && docker-php-ext-enable redis && wget https://getcomposer.org/composer.phar && php composer.phar install --dev
35+
- name: Run PHP ${{ matrix.php_version }}} Unit Tests
36+
run: php vendor/bin/phpunit --verbose --configuration phpunit.xml

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 2.1.2 (2023-03-22)
2+
- Update composer packages
3+
- Update git information (GitHub)
4+
15
# 2.1.1 (2023-03-20)
26
- Changed setex to set with EX values
37
- Added TTLs to missing keys

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"description": "Redis backed library for creating background jobs and processing them later. Based on resque for Ruby. Originally forked from chrisboulton/php-resque.",
99
"keywords": ["job", "background", "redis", "resque", "php"],
10-
"homepage": "https://gitlab.com/idanoo/php-resque/",
10+
"homepage": "https://github.com/idanoo/php-resque",
1111
"license": "MIT",
1212
"authors": [
1313
{
@@ -18,7 +18,7 @@
1818
"require": {
1919
"php": ">7.4",
2020
"psr/log": "^1.1.0",
21-
"colinmollenhour/credis": "^1.13.0"
21+
"colinmollenhour/credis": "^1.14.0"
2222
},
2323
"require-dev": {
2424
"phpunit/phpunit": "^9",
@@ -40,8 +40,8 @@
4040
}
4141
},
4242
"support": {
43-
"issues": "https://gitlab.com/idanoo/php-resque/issues",
44-
"source": "https://gitlab.com/idanoo/php-resque"
43+
"issues": "https://github.com/idanoo/php-resque/issues",
44+
"source": "https://github.com/idanoo/php-resque"
4545
},
4646
"config": {
4747
"allow-plugins": {

0 commit comments

Comments
 (0)