build(deps): bump codecov/codecov-action from 5.5.2 to 6.0.0 (#550) #481
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: | |
| paths: | |
| - "src/**.php" | |
| - "tests/**.php" | |
| - ".github/workflows/test.yml" | |
| - ".ci/docker-compose.yml" | |
| push: | |
| branches: main | |
| paths: | |
| - "src/**.php" | |
| - "tests/**.php" | |
| - ".github/workflows/test.yml" | |
| - ".ci/docker-compose.yml" | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: PHPUnit | |
| runs-on: ubuntu-22.04 | |
| env: | |
| COMPOSE_FILE: .ci/docker-compose.yml | |
| GOTIFY_URI: "http://127.0.0.1:8080" | |
| HTTPBIN_URI: "http://127.0.0.1:8081" | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0 | |
| with: | |
| php-version: '8.3' | |
| extensions: mbstring | |
| - name: Setup problem matchers for PHP | |
| run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" | |
| - name: Setup problem matchers for PHPUnit | |
| run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" | |
| - name: Get composer cache directory | |
| id: composer-cache | |
| shell: bash | |
| run: | | |
| echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT" | |
| - name: Cache composer cache directory | |
| uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 | |
| with: | |
| path: ${{ steps.composer-cache.outputs.dir }} | |
| key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
| restore-keys: ${{ runner.os }}-composer- | |
| - name: "Validate composer.json and composer.lock" | |
| run: composer validate --strict | |
| - name: Install dependencies with composer | |
| run: composer install --prefer-dist | |
| #- name: Fetch & setup gotify plugin | |
| # run: bash .ci/scripts/setup-plugin.sh | |
| - name: Start gotify & httpbin docker containers | |
| run: docker compose up -d | |
| - name: Test connections to docker containers | |
| run: bash .ci/scripts/connections.sh | |
| - name: Run phpunit | |
| #run: ./vendor/bin/phpunit --coverage-clover=coverage.xml --testsuite=default,plugin-endpoint | |
| run: ./vendor/bin/phpunit --coverage-clover=coverage.xml --testsuite=default | |
| - name: Stop gotify & httpbin docker docker containers | |
| run: docker compose down | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |