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 955fb00 commit 9f5f200Copy full SHA for 9f5f200
.github/workflows/tests.yml .github/workflows/test.yml.github/workflows/tests.yml renamed to .github/workflows/test.yml
@@ -2,25 +2,24 @@ name: Tests
2
3
on:
4
push:
5
- branches:
6
- - main
7
-
+ branches: [ main ]
8
pull_request:
9
10
+
+ # Allows you to run this workflow manually from the Actions tab
+ workflow_dispatch:
11
12
jobs:
13
build_and_test:
14
15
runs-on: ubuntu-latest
16
17
steps:
18
- - uses: actions/checkout@v2
19
20
- - name: Set up JDK 1.8
21
- uses: actions/setup-java@v1
+ - uses: actions/checkout@v4
+ - uses: actions/setup-java@v4
22
with:
23
- java-version: 1.8
+ distribution: 'temurin'
+ java-version: 17
24
25
- name: Cache Maven packages
26
uses: actions/cache@v2
0 commit comments