We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce46466 commit d243533Copy full SHA for d243533
.github/workflows/spring.yml
@@ -22,12 +22,18 @@ jobs:
22
distribution: 'temurin'
23
cache: maven
24
25
+ - name: Set up environment variables
26
+ run: echo "Connecting with the password..."
27
+ env:
28
+ NEO4J_URI: ${{ secrets.NEO4J_URI }}
29
+ NEO4J_USERNAME: ${{ secrets.NEO4J_USERNAME }}
30
+ NEO4J_PASSWORD: ${{ secrets.NEO4J_PASSWORD }}
31
+
32
- name: Compile the project
33
run: mvn compile
34
35
- name: Run test case
36
run: mvn test
37
38
- name: Build with Maven
- run: mvn clean install package
-
39
+ run: mvn clean install package
0 commit comments