Skip to content

Merge pull request #54 from beehyv/PSMRI-PR-fixes #8

Merge pull request #54 from beehyv/PSMRI-PR-fixes

Merge pull request #54 from beehyv/PSMRI-PR-fixes #8

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ "develop" ]
paths-ignore:
- target/**
pull_request:
branches: [ "develop" ]
paths-ignore:
- target/**
jobs:
analyze:
name: Analyze
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'java' ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Setup JDK 8
uses: actions/setup-java@v2
with:
java-version: 8
distribution: 'adopt'
- name: Build with Maven
run: mvn clean install
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"