Skip to content

Commit

Permalink
feat: port Fuse.js 6 (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
loilo committed Aug 25, 2021
1 parent ba87037 commit 74561cf
Show file tree
Hide file tree
Showing 111 changed files with 9,780 additions and 2,212 deletions.
5 changes: 2 additions & 3 deletions .editorconfig
Expand Up @@ -2,7 +2,6 @@ root = true

[*]
end_of_line = LF

[*.php]
indent_size = 4
indent_style = space
indent_size = 4
insert_final_newline = true
14 changes: 11 additions & 3 deletions .gitattributes
@@ -1,11 +1,19 @@
* text=auto eol=lf

/test export-ignore
/.github export-ignore
/.vscode export-ignore
/.editorconfig export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/appveyor.yml export-ignore
/.prettierignore export-ignore
/.prettierrc export-ignore
/composer.json export-ignore
/composer.lock export-ignore
/fuse.svg export-ignore
/package-lock.json export-ignore
/package.json export-ignore
/phpcs.xml export-ignore
/phpunit.xml export-ignore
/psalm.xml export-ignore
/README.md export-ignore
/test export-ignore
47 changes: 24 additions & 23 deletions .github/workflows/test.yml
@@ -1,30 +1,31 @@
name: Test CI

on:
push:
branches:
- master
pull_request:
paths-ignore:
- "*.md"
push:
branches:
- master
pull_request:
paths-ignore:
- '*.md'

jobs:
build:
build:
runs-on: ${{ matrix.os }}

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
php-version: ['7.4', '8.0']

strategy:
matrix:
os: [ubuntu-latest, windows-latest]
php-version: ['7.3', '7.4', '8.0']

steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: composer
- run: composer install
- run: vendor/bin/phpunit test
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: composer
- run: composer install
- run: vendor/bin/phpcs
- run: vendor/bin/psalm
- run: vendor/bin/phpunit

0 comments on commit 74561cf

Please sign in to comment.