forked from actions/setup-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6fcd4c7
commit ce1e884
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
#testing the issue-678 (1) | ||
name: Build Project | ||
|
||
on: | ||
push: | ||
branches: suyashgaonkar-issue678 | ||
pull_request: | ||
branches: [ master, ver/* ] | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
test-docker: | ||
runs-on: ubuntu-latest | ||
container: docker:cli | ||
steps: | ||
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: 11 | ||
- name: Execute Java | ||
run: | | ||
which java | ||
type java | ||
echo $JAVA_HOME | ||
echo $PATH | ||
java --help | ||
test-ubuntu: | ||
runs-on: ubuntu-latest | ||
container: ubuntu:latest | ||
steps: | ||
- name: Install docker and docker-compose | ||
run: | | ||
apt -y update | ||
apt -y install sudo curl | ||
curl -fsSL https://get.docker.com -o get-docker.sh | ||
sudo sh ./get-docker.sh | ||
apt-get install docker-compose-plugin | ||
- name: Set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: temurin | ||
java-version: 11 | ||
- name: Execute Java | ||
run: | | ||
which java | ||
type java | ||
echo $JAVA_HOME | ||
echo $PATH | ||
java --help |