We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8adcf2 commit b5d9d0aCopy full SHA for b5d9d0a
1 file changed
.github/workflows/tests.yml
@@ -0,0 +1,22 @@
1
+name: Java CI con Maven
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
+ workflow_dispatch:
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - uses: actions/checkout@v4
14
15
+ - name: Configurar JDK 21
16
+ uses: actions/setup-java@v4
17
+ with:
18
+ distribution: 'temurin'
19
+ java-version: '21'
20
21
+ - name: Construir con Maven
22
+ run: mvn -B verify
0 commit comments