We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6af584 commit c8378edCopy full SHA for c8378ed
1 file changed
.github/workflows/api-tests.yml
@@ -10,7 +10,7 @@ on:
10
11
jobs:
12
API-Test:
13
- runs-on: ubuntu-latest
+ runs-on: windows-latest
14
steps:
15
- name: Checkout code
16
uses: actions/checkout@v3
@@ -24,11 +24,14 @@ jobs:
24
${{ runner.os }}-maven-
25
26
- name: Set up Java and Maven
27
- uses: actions/setup-java@v3
+ uses: actions/setup-java@v2
28
with:
29
distribution: "temurin"
30
java-version: "11"
31
32
+ - name: Install Maven
33
+ run: choco install maven
34
+
35
- name: Run tests with Maven
36
env:
37
CLIENT_ID: ${{ secrets.CLIENT_ID }}
@@ -41,7 +44,7 @@ jobs:
41
44
42
45
- name: Upload Allure Report as artifact
43
46
if: always()
- uses: actions/upload-artifact@v3
47
+ uses: actions/upload-artifact@v2
48
49
name: AllureReport
50
path: target/site/allure-maven-plugin/
0 commit comments