Skip to content

Commit

Permalink
ci: Create finder-kotlin.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
KazuCocoa authored Oct 14, 2023
1 parent f24e9a2 commit 3d421da
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/finder-kotlin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Kotlin

on:
workflow_dispatch:
push:
paths:
- 'finder/kotlin/**'
branches: [ main ]
pull_request:
paths:
- 'finder/kotlin/**'
branches: [ main ]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Run tests
run: |
cd finder/python
./gradlew test

0 comments on commit 3d421da

Please sign in to comment.