Skip to content

simple javac workflow #1

simple javac workflow

simple javac workflow #1

Workflow file for this run

name: Java Compile Workflow
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
- name: Compile Java files
run: javac -d . '**/*.java'
- name: Display compiled files
run: find .