Skip to content

Обновление ДТО #21

Обновление ДТО

Обновление ДТО #21

Workflow file for this run

name: "CodeQL"
on:
pull_request:
types:
- opened
- ready_for_review
- reopened
- synchronize
branches:
- main
- dev
concurrency:
group: CodeQL-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze
if: ${{ !github.event.pull_request.draft }}
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: java
- uses: actions/setup-java@v3
with:
distribution: adopt
java-version: 17
cache: maven
- name: Maven Install
run: mvn -B clean install
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3