Skip to content

Commit 711dbb0

Browse files
authored
Create build.yml
1 parent f079631 commit 711dbb0

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Build
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- uses: actions/setup-python@v2
9+
- name: Set up JDK 17
10+
uses: actions/setup-java@v1
11+
with:
12+
java-version: 17
13+
- run: find . -type f -name "*.java" > sources.txt
14+
- run: javac @sources.txt

0 commit comments

Comments
 (0)