Skip to content

Make ContactPersonInterface::getBitrix24UserId() non-nullable #1133

Make ContactPersonInterface::getBitrix24UserId() non-nullable

Make ContactPersonInterface::getBitrix24UserId() non-nullable #1133

Workflow file for this run

name: "PHPUnit tests"
on:
push:
pull_request:
jobs:
tests:
name: "PHPUnit tests"
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: "actions/checkout@v4"
- name: "Export UID/GID for container user override"
run: |
echo "UID=$(id -u)" >> $GITHUB_ENV
echo "GID=$(id -g)" >> $GITHUB_ENV
- name: "Login to GitHub Container Registry"
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: "Pull Docker image (build if not yet published)"
run: docker compose pull || docker compose build
- name: "Install dependencies"
run: make composer-install
- name: "run unit tests"
run: make test-unit
- name: "is unit tests tests succeeded"
if: ${{ success() }}
run: |
echo '✅ unit tests pass, congratulations!'
- name: "is unit tests tests failed"
if: ${{ failure() }}
run: |
echo '::error:: ❗️ unit tests tests failed (╯°益°)╯彡┻━┻'