Skip to content

Increase thread 10 #124

Increase thread 10

Increase thread 10 #124

Workflow file for this run

name: Test Pull Request
on:
pull_request:
branches:
- main
- develop
# run the workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository code
uses: actions/checkout@v2
- name: Install Java 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Build with Gradle
run: ./gradlew build
- name: Test with Gradle
run: ./gradlew test