Skip to content

Update roborazzi to see the report #629

Update roborazzi to see the report

Update roborazzi to see the report #629

Workflow file for this run

name: Analyze
on:
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'java' ]
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- uses: ./.github/actions/setup-java
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Build project
run: ./gradlew :app-android:assemble --stacktrace
- name: Perform analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"