Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 4c9c26b

Browse files
authored
Add ci (#1)
Add CI
1 parent fd32b88 commit 4c9c26b

5 files changed

Lines changed: 1475 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build-test:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: composer install
12+
run: composer install
13+
- name: phpunit
14+
run: vendor/bin/phpunit

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vendor/

.hgignore

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

composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,8 @@
2828
"branch-alias": {
2929
"dev-default": "1.x-dev"
3030
}
31+
},
32+
"require-dev": {
33+
"phpunit/phpunit": "^5.0.0"
3134
}
3235
}

0 commit comments

Comments
 (0)