1
0

Добавить .gitea/workflows/run-junit.yaml
Some checks failed
tests / run_tests (push) Failing after 2m1s

This commit is contained in:
Владимир Шперлинг 2024-10-29 19:58:58 +00:00
parent 9daa2517e9
commit 600a4a7922

View File

@ -0,0 +1,14 @@
name: tests
on: push
jobs:
run_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Run tests with Maven
run: mvn -B test --file pom.xml