Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on: [push]

jobs:
build-test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Install dependencies
uses: php-actions/composer@v6
with:
php_version: 8.0
version: 2

- name: PHPUnit Tests
uses: php-actions/phpunit@v2
# env:
# TEST_NAME: Scarlett
with:
php_version: 8.0
version: 9
bootstrap: vendor/autoload.php
configuration: phpunit.xml.dist
args: --coverage-text
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ vendor/
build/
.idea/
.php_cs.cache
composer.lock
27 changes: 0 additions & 27 deletions .travis.yml

This file was deleted.

Loading