Skip to content

Commit aa0dc76

Browse files
committed
Merge branch 'master' of github.com:Flynsarmy/laravel-csv-seeder
2 parents 92acae3 + 8479055 commit aa0dc76

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/main.yml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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

0 commit comments

Comments
 (0)