We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ab99f9 commit 73270daCopy full SHA for 73270da
.github/workflows/allure-report.yml
.github/workflows/run-tests.yml
@@ -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