You've already forked ugly-queue
25 lines
483 B
YAML
25 lines
483 B
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches:
|
|
- "develop"
|
|
# pull_request:
|
|
# types: [ opened, reopened ]
|
|
tags:
|
|
- "!**"
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: "shivammathur/setup-php@v2"
|
|
with:
|
|
php-version: "7.4"
|
|
- uses: "ramsey/composer-install@v3"
|
|
|
|
- name: "Run Tests with PHPunit"
|
|
run: |
|
|
/usr/bin/php vendor/phpunit/phpunit/phpunit --configuration ./phpunit.xml.dist
|
|
|