File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change 1+ # This is a basic workflow to help you get started with Actions
2+ name : CI
3+
4+ # Controls when the action will run. Triggers the workflow on push or pull request
5+ # events but only for the master branch
6+ on : [push]
7+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
8+ jobs :
9+ # This workflow contains a single job called "build"
10+ test :
11+ # The type of runner that the job will run on
12+ runs-on : ubuntu-latest
13+
14+ # Steps represent a sequence of tasks that will be executed as part of the job
15+ steps :
16+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
17+ - uses : actions/checkout@v2
18+
19+ - name : Install Dependencies (PHP vendors)
20+ run : composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --dev
21+
22+ - name : Execute tests via PHPUnit
23+ run : vendor/bin/phpunit
You can’t perform that action at this time.
0 commit comments