Skip to content

[ISSUE6] running tests automatically #6

[ISSUE6] running tests automatically

[ISSUE6] running tests automatically #6

Workflow file for this run

name: test ci
on:
pull_request:
branches: [ master, develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'temurin'
- name: Run tests
run: ./gradlew test