Skip to content

Update Main-CI.yml

Update Main-CI.yml #10

Workflow file for this run

name: Build and Test
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and run docker-image with the Dockerfile
run: |
docker build --tag registeration-process:v2.0 .
- name: Build and run docker-compose
run: |
docker-compose up -d
- name: Setup JDK 19
uses: actions/setup-java@v2
with:
java-version: '19'
distribution: 'temurin'
- name: Run java code
run: |
javac src/Main.java
java Main