diff --git a/.editorconfig b/.editorconfig index c7bfc719..37cfad78 100644 --- a/.editorconfig +++ b/.editorconfig @@ -10,6 +10,3 @@ trim_trailing_whitespace = true [*.md] trim_trailing_whitespace = false - -[.travis.yml] -indent_size = 2 diff --git a/.gitattributes b/.gitattributes index b77c4509..d6ef4590 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,7 +1,6 @@ /.editorconfig export-ignore /.gitattributes export-ignore /.gitignore export-ignore -/.travis.yml export-ignore /composer.lock export-ignore /phpcs.xml export-ignore /phpdoc.xml export-ignore diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 690f11bb..8999d2aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,6 @@ name: ci -on: push +on: [push, pull_request] jobs: suite: diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index d1faa8d6..00000000 --- a/.travis.yml +++ /dev/null @@ -1,24 +0,0 @@ -language: php -sudo: false - -php: - - 8.0 - - 8.1 - -before_script: - - if [[ $TRAVIS_PHP_VERSION != 'hhvm' ]]; then phpenv config-add ./tests/apc.ini; fi; - - wget -O phpdoc.phar https://github.com/phpDocumentor/phpDocumentor/releases/download/v3.3.1/phpDocumentor.phar - - composer install - -script: - - composer test - - composer cs-check - - composer docs - -deploy: - provider: pages - skip_cleanup: true - github_token: $GITHUB_TOKEN - local_dir: ./docs - on: - branch: master