Skip to content

final

final #54

Workflow file for this run

name: Java CI
on:
push:
branches:
- Crystal
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: ${{ env.PR_FETCH_DEPTH }}
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: '11'
- name: Compile Java
run: |
cd HolidayTravelVehicles
javac -d . holiday.java
java holiday