Skip to content

Commit 5e6f62c

Browse files
committed
Rewrite
1 parent fc89dc2 commit 5e6f62c

File tree

132 files changed

+4734
-7873
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+4734
-7873
lines changed

.github/workflows/ci.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
PHPUnit:
9+
name: PHPUnit (PHP ${{ matrix.php }} with ${{ matrix.extensions }} on ${{ matrix.os }})
10+
runs-on: ${{ matrix.os }}
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
os:
15+
- ubuntu-latest
16+
- windows-latest
17+
- macos-latest
18+
php:
19+
- "8.1"
20+
- "8.0"
21+
- "7.4"
22+
extensions:
23+
- ""
24+
- "uv-amphp/ext-uv@master"
25+
steps:
26+
- uses: actions/checkout@v2
27+
- name: Install libuv
28+
if: matrix.os == 'ubuntu-latest'
29+
run: sudo apt-get install libuv1-dev
30+
- uses: shivammathur/setup-php@v2
31+
with:
32+
php-version: ${{ matrix.php }}
33+
coverage: pcov
34+
extensions: ${{ matrix.extensions }}
35+
- run: composer install
36+
- run: vendor/bin/phpunit --coverage-text --debug
37+
PHPUnit-Docker:
38+
name: PHPUnit (PHP ${{ matrix.php }} on Docker)
39+
runs-on: ubuntu-latest
40+
container:
41+
image: wyrihaximusnet/php:${{ matrix.php }}-nts-alpine-slim-dev-root
42+
strategy:
43+
fail-fast: false
44+
matrix:
45+
php:
46+
- "8.1"
47+
- "8.0"
48+
- "7.4"
49+
steps:
50+
- uses: actions/checkout@v2
51+
- run: composer install
52+
- run: vendor/bin/phpunit --coverage-text

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
vendor
2+
.phpunit.result.cache

.travis.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)