Skip to content

Commit

Permalink
resolving comments
Browse files Browse the repository at this point in the history
  • Loading branch information
vihar-s1 committed Oct 8, 2024
1 parent 2ac6d81 commit 61cf5e6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,28 +19,24 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ "java-kotlin" ]
language: [ "java", "kotlin" ]

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: security-extended,security-and-quality

# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2
# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh
uses: github/codeql-action/autobuild@v3

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"

3 changes: 2 additions & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
jobs:
unit-tests:
runs-on: ubuntu-latest
name: Run Unit-Tests
permissions:
actions: read
contents: read
Expand All @@ -27,5 +28,5 @@ jobs:
uses: gradle/actions/setup-gradle@v3

- name: Run test suites
run: ./gradlew test
run: ./gradlew test --info

0 comments on commit 61cf5e6

Please sign in to comment.