build(deps): bump github/codeql-action from 4.37.9 to 4.38.0 #341
Workflow file for this run
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: rpc | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - stable | |
| pull_request: | |
| branches: | |
| - master | |
| - stable | |
| jobs: | |
| rpc_test: | |
| name: RPC plugin (Go ${{ matrix.go }}, PHP ${{ matrix.php }}, OS ${{matrix.os}}) | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 60 | |
| strategy: | |
| matrix: | |
| php: [ "8.5" ] | |
| go: [ stable ] | |
| os: [ "ubuntu-latest" ] | |
| steps: | |
| - name: Set up Go ${{ matrix.go }} | |
| uses: actions/setup-go@v7 # action page: <https://github.com/actions/setup-go> | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Check out code | |
| uses: actions/checkout@v7 | |
| - name: Init Go modules Cache # Docs: <https://git.io/JfAKn#go---modules> | |
| uses: actions/cache@v6 | |
| with: | |
| path: ~/go/pkg/mod | |
| key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
| restore-keys: ${{ runner.os }}-go- | |
| - name: Increase FD limit | |
| run: | | |
| echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p | |
| ulimit -n 5000 | |
| - name: Install Go dependencies | |
| run: go mod download | |
| - name: Run root module unit tests with coverage | |
| run: | | |
| mkdir ./tests/coverage-ci | |
| go test -timeout 5m -v -race -cover -tags=debug -coverpkg=./... -coverprofile=./tests/coverage-ci/rpc_unit.out -covermode=atomic ./... | |
| - name: Run RPC e2e tests with coverage | |
| run: | | |
| cd tests | |
| go test -timeout 20m -v -race -cover -tags=debug -coverpkg=github.com/roadrunner-server/rpc/v6/... -coverprofile=./coverage-ci/rpc.out -covermode=atomic ./... | |
| - name: Archive code coverage results | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: coverage | |
| path: ./tests/coverage-ci/ | |
| codecov: | |
| name: Upload codecov | |
| runs-on: ubuntu-latest | |
| needs: | |
| - rpc_test | |
| timeout-minutes: 60 | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v7 | |
| - name: Download code coverage results | |
| uses: actions/download-artifact@v8 | |
| with: | |
| name: coverage | |
| path: coverage | |
| - run: | | |
| echo 'mode: atomic' > summary.txt | |
| tail -q -n +2 coverage/*.out >> summary.txt | |
| awk ' | |
| NR == 1 { print; next } | |
| /^github\.com\/roadrunner-server\/rpc\/v6\// { | |
| sub(/^github\.com\/roadrunner-server\/rpc\/v6\//, "", $0) | |
| } | |
| ' summary.txt > summary.filtered.txt | |
| mv summary.filtered.txt summary.txt | |
| # a profile that maps to no plugin source uploads fine and reports 0% | |
| blocks=$(($(wc -l < summary.txt) - 1)) | |
| if [ "$blocks" -lt 10 ]; then | |
| echo "::error::coverage summary holds $blocks blocks, the profile does not map to plugin sources" | |
| exit 1 | |
| fi | |
| - name: upload to codecov | |
| uses: codecov/codecov-action@v7 # Docs: <https://github.com/codecov/codecov-action> | |
| with: | |
| files: summary.txt | |
| fail_ci_if_error: false |