Skip to content

Support for yolo instance-segmentation polygon format (#119) #110

Support for yolo instance-segmentation polygon format (#119)

Support for yolo instance-segmentation polygon format (#119) #110

Workflow file for this run

name: "CodeQL"
on:
push:
branches:
- master
tags:
- 'v*.*.*'
paths-ignore:
- .dockerignore
- .gitignore
- Dockerfile
- LICENSE
- README.md
- demo-media/*
- chocolatey/**
pull_request:
branches:
- master
env:
JAVA_VERSION: '21.0.3+9.0.LTS'
JAVA_DISTRIBUTION: 'temurin'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'java-kotlin' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: ${{ env.JAVA_DISTRIBUTION }}
cache: gradle
- name: Verify Gradle wrapper
uses: gradle/actions/wrapper-validation@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"