Skip to content

chore(deps): bump io.grpc:grpc-stub from 1.64.0 to 1.69.0 #10

chore(deps): bump io.grpc:grpc-stub from 1.64.0 to 1.69.0

chore(deps): bump io.grpc:grpc-stub from 1.64.0 to 1.69.0 #10

Workflow file for this run

name: Static Analysis
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
detekt:
name: Detekt
runs-on: ubuntu-latest
strategy:
matrix:
package:
- rdfc-cli
- rdfc-core
- rdfc-intermediate
- rdfc-orchestrator
# TODO: rdfc-parser
- rdfc-processor
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: actions/setup-java@v4
with:
java-version: '22'
distribution: 'adopt'
cache: 'gradle'
# Download Detekt binary
- name: Download Detekt
run: |
curl -sSLO https://github.com/detekt/detekt/releases/download/v1.23.7/detekt-cli-1.23.7.zip
unzip detekt-cli-1.23.7.zip
# Run Detekt
- name: Run Detekt
run: |
./detekt-cli-1.23.7/bin/detekt-cli --config detekt.yml --build-upon-default-config --max-issues 0 --input ${{ matrix.package }}/src/main