mirror of
https://github.com/danog/psalm-plugin-laravel.git
synced 2024-12-02 17:48:27 +01:00
22 lines
281 B
YAML
22 lines
281 B
YAML
name: Run Tests
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
name: Test Laravel
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Test
|
|
run: |
|
|
./tests/laravel-test.sh
|