We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f079631 commit 711dbb0Copy full SHA for 711dbb0
.github/workflows/build.yml
@@ -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