Skip to content

Commit 73270da

Browse files
update the workflow
1 parent 1ab99f9 commit 73270da

File tree

2 files changed

+16
-40
lines changed

2 files changed

+16
-40
lines changed

.github/workflows/allure-report.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

.github/workflows/run-tests.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Run tests and publish report
2+
on: [push, workflow_dispatch]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v3
8+
9+
- name: Set up JDK
10+
uses: actions/setup-java@v3
11+
with:
12+
distribution: zulu
13+
java-version: 17
14+
15+
- name: Run tests
16+
run: ./gradlew clean test

0 commit comments

Comments
 (0)