Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions .github/workflows/back-end.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow

name: Integrate

on:
pull_request: null
push:
branches:
- master

jobs:
unit_tests:
name: Unit tests
strategy:
fail-fast: false
matrix:
php-version:
- 7.2
- 7.3
- 7.4
- 8.0
- 8.1
- 8.2
- 8.3
runs-on: ubuntu-latest
steps:
-
name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
-
name: Setup problem matcher for PHPUnit
run: |
echo ::add-matcher::${{ runner.tool_cache }}/phpunit.json
-
name: Checkout repository
uses: actions/checkout@v4
-
name: Install dependencies
uses: ramsey/composer-install@v3
with:
dependency-versions: highest
-
name: Execute unit tests
run: composer exec -- phpunit
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

Empty file modified README.md
100755 → 100644
Empty file.