From 600a4a7922d57387b084776e01683ba302828add Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D0=BC=D0=B8=D1=80=20=D0=A8?= =?UTF-8?q?=D0=BF=D0=B5=D1=80=D0=BB=D0=B8=D0=BD=D0=B3?= Date: Tue, 29 Oct 2024 19:58:58 +0000 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20.gitea/workflows/run-junit.yaml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/run-junit.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitea/workflows/run-junit.yaml diff --git a/.gitea/workflows/run-junit.yaml b/.gitea/workflows/run-junit.yaml new file mode 100644 index 0000000..3b7d88d --- /dev/null +++ b/.gitea/workflows/run-junit.yaml @@ -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 \ No newline at end of file