mirror of
https://github.com/archtechx/jobpipeline.git
synced 2025-12-12 06:44:03 +00:00
20 lines
No EOL
364 B
YAML
20 lines
No EOL
364 B
YAML
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 |