feat: allow to pass list of headers to getIp #384
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: "Tests" | |
| on: [pull_request] | |
| jobs: | |
| lint: | |
| name: Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.1' | |
| - name: Setup Docker | |
| run: docker compose up -d --build | |
| - name: Wait for Server to be ready | |
| run: sleep 10 | |
| - name: Run Tests | |
| run: docker compose exec web vendor/bin/phpunit --configuration phpunit.xml |