Make ContactPersonInterface::getBitrix24UserId() non-nullable
#1133
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 (╯°益°)╯彡┻━┻' |