Skip to content

PG_160586 제출

PG_160586 제출 #2

Workflow file for this run

name: Java Build
on:
pull_request:
branches: [ "main" ]
paths: [ '**/*.java' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Compile Java files
run: |
find . -name "*.java" > sources.txt
javac @sources.txt