Run tests for master branch and pull requests

This commit is contained in:
JësFot 2020-11-16 00:55:04 +01:00
parent 6788e689cd
commit e3b1cbd411
No known key found for this signature in database
GPG Key ID: 254A340472EF03E1

25
.github/workflows/tests.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: Build and test Minestom
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 1.11
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build Minestom
run: ./gradlew build
- name: Run tests
run: ./gradlew test