Skip to content

Removed dependency step in workflow #11

Removed dependency step in workflow

Removed dependency step in workflow #11

Workflow file for this run

name: "Build Pull Request"
on:
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
actions: read
contents: write
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'java' ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Setup Java and Maven
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2