Skip to content

Commit

Permalink
Add GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dantleech committed Nov 19, 2021
1 parent 57786e1 commit 1757d01
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 42 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: "CI"

on:
pull_request: ~
push:
branches:
- 'master'

env:
fail-fast: true
TZ: "UTC"

jobs:
phpunit:
name: "PHPUnit (${{ matrix.php-version }})"

runs-on: "ubuntu-latest"

strategy:
matrix:
php-version:
- '7.3'
- '7.4'
- '8.0'

steps:
-
name: "Checkout code"
uses: "actions/checkout@v2"
-
name: "Start container"
run: docker-compose up -d
-
name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
extensions: "${{ env.REQUIRED_PHP_EXTENSIONS }}"
php-version: "${{ matrix.php-version }}"
tools: composer:v2

-
name: "Composer install"
uses: "ramsey/composer-install@v1"

-
name: "Run PHPUnit"
run: "composer phpunit"

-
name: "Run Behat"
run: "composer behat"
31 changes: 0 additions & 31 deletions .travis.yml

This file was deleted.

11 changes: 0 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,6 @@
CHANGELOG
=========

1.2.0
-----

Features:

- List non empty queues

Improvements:

- Added type hints for Symfony console commands

1.1.0
-----

Expand Down

0 comments on commit 1757d01

Please sign in to comment.