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 a75ab69 commit a8a8f36Copy full SHA for a8a8f36
.github/workflows/main.yml
@@ -0,0 +1,16 @@
1
+name: Build & Test
2
+on: [push,pull_request]
3
+jobs:
4
+ build:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v3
8
+ - name: Set up JDK 11
9
+ uses: actions/setup-java@v3
10
+ with:
11
+ java-version: '11'
12
+ distribution: 'adopt'
13
+ - name: Build with Maven
14
+ env:
15
+ DETECTLANGUAGE_API_KEY: ${{ secrets.DETECTLANGUAGE_API_KEY }}
16
+ run: mvn test
0 commit comments