We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb1be2e commit d91212aCopy full SHA for d91212a
1 file changed
.github/workflows/ci.yaml
@@ -12,11 +12,21 @@ jobs:
12
jdk_8_maven:
13
runs-on: ubuntu-latest
14
steps:
15
- - uses: actions/checkout@v4
16
- name: Setup JDK
17
uses: actions/setup-java@v1
18
with:
19
java-version: 1.8
20
- - name: Build with Maven
+ - name: Checkout EvoMaster
+ uses: actions/checkout@v4
21
+ with:
22
+ repository: WebFuzzing/EvoMaster
23
+ path: evomaster
24
+ token: ${{ secrets.GITHUB_TOKEN }}
25
+ - name: Install EvoMaster
26
+ run: mvn clean install -DskipTests
27
+ working-directory: evomaster
28
+ - name: Checkout EMB
29
30
+ - name: Build EMB
31
run: mvn clean install -DskipTests
32
working-directory: jdk_8_maven
0 commit comments