Adds Tests to Github Actions

This commit is contained in:
2023-08-02 00:22:27 -03:00
parent 1cf2862654
commit 209ef9e358
2 changed files with 22 additions and 37 deletions

20
.github/workflows/run-tests.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: ci
on:
push
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Running Tests with Maven
run: ./mvnw test