Skip to content

Commit

Permalink
Added cloning repositories.
Browse files Browse the repository at this point in the history
Signed-off-by: mmazas <mmazas@ITEM-S104678.emea.msad.sopra>
  • Loading branch information
mmazas authored and mmazas committed Jul 20, 2024
1 parent b937c6f commit ba84abe
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,19 @@ jobs:

steps:

- uses: actions/checkout@v4
- name: clone javacc-8
uses: actions/checkout@v4
with:
repository: javacc/javacc-8.git
path: javacc-8
ref: release

- name: clone javacc-8-core
uses: actions/checkout@v4
with:
repository: javacc/javacc-8-core.git
path: javacc-8-core
ref: release

- name: Set up JDK 11
uses: actions/setup-java@v4
Expand All @@ -62,7 +74,7 @@ jobs:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2

# - name: Build package on javacc-8-core
# run: mvn -B -e package

Expand Down

0 comments on commit ba84abe

Please sign in to comment.