Skip to content

Refactored/moved some files to create order and law #11

Refactored/moved some files to create order and law

Refactored/moved some files to create order and law #11

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build Docker image
run: |
docker build -f development/Dockerfile -t php-ci .
- name: Run codestyle tests
run: |
docker run --rm php-ci vendor/bin/ecs --config=development/tooling/ecs.php
- name: Run unit tests
run: |
docker run --rm php-ci vendor/bin/phpunit -c development/tooling/phpunit.xml --testdox tests