Skip to content

Commit fa66847

Browse files
Copilotbytemain
andcommitted
Add vfox e2e workflow
Co-authored-by: bytemain <13938334+bytemain@users.noreply.github.com>
1 parent c8cda91 commit fa66847

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/e2e.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: End-to-End Test
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [main, master]
7+
workflow_dispatch:
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
e2e:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v4
18+
- name: Install vfox
19+
uses: version-fox/install-vfox-action@v1
20+
- name: Add java plugin from repo
21+
run: vfox add --source "${GITHUB_WORKSPACE}" java
22+
- name: Search java versions
23+
run: vfox search java tem
24+
- name: Install Java
25+
run: vfox install java@17.0.17-tem
26+
- name: Verify Java install
27+
run: vfox list java

0 commit comments

Comments
 (0)