mirror of
https://github.com/github/codeql.git
synced 2026-03-05 15:16:47 +01:00
29 lines
645 B
YAML
29 lines
645 B
YAML
name: "Kotlin Build"
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "java/kotlin-extractor/**"
|
|
- "misc/bazel/**"
|
|
- "misc/codegen/**"
|
|
- "*.bazel*"
|
|
- .github/workflows/kotlin-build.yml
|
|
branches:
|
|
- main
|
|
- rc/*
|
|
- codeql-cli-*
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: |
|
|
bazel query //java/kotlin-extractor/...
|
|
# only build the default version as a quick check that we can build from `codeql`
|
|
# the full official build will be checked by QLucie
|
|
bazel build //java/kotlin-extractor
|