Merge pull request #20 from OpenCageData/modernize-linter-sniffer #78
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: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: "15 22 2 * *" | |
| env: | |
| OPENCAGE_API_KEY: ${{ secrets.GEO_CODER_OPENCAGE_API_KEY }} | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| # https://www.php.net/supported-versions.php | |
| php-version: ["8.1", "8.2", "8.3", "8.4", "8.5"] | |
| name: PHP OpenCage Geocode | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up PHP ${{ matrix.php-version }} | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| coverage: none | |
| - name: Install dependencies | |
| run: | | |
| if [ "${{ matrix.php-version }}" != "8.5" ]; then rm composer.lock; fi | |
| composer install --no-progress --no-suggest --no-interaction | |
| - name: Run phpunit tests (with and without cURL) | |
| run: | | |
| composer check | |
| - name: Run proxy tests | |
| run: | | |
| docker run -d --name=tinyproxy -p 8888:8888 monokal/tinyproxy:latest ANY | |
| PROXY=http://0.0.0.0:8888 ./vendor/bin/phpunit | |
| PROXY=http://0.0.0.0:8888 SKIP_CURL=1 ./vendor/bin/phpunit | |
| docker rm -f tinyproxy | |
| - name: Run PHPCS (Code Sniffer) | |
| run: ./vendor/bin/phpcs . | |
| - name: Run PHPStan (Static Analysis) | |
| run: ./vendor/bin/phpstan analyse |