1
0
Fork 0
mirror of https://github.com/archtechx/jobpipeline.git synced 2025-12-12 12:34:03 +00:00

Initial commit

This commit is contained in:
Samuel Štancl 2020-05-15 18:07:28 +02:00
commit 90c59626c2
8 changed files with 5460 additions and 0 deletions

20
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,20 @@
name: CI
on: [ push, pull_request ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
laravel: ["^6.0", "^7.0"]
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: composer install
- name: Start Redis
uses: supercharge/redis-github-action@1.1.0
- name: Run tests
run: phpunit