Skip to content

Commit 0c1a417

Browse files
authored
Test github actions (#228)
* Remove obsolete Maven deploy workflow Deleted the `github-actions-deploy-snapshots.yml` file as it was redundant. Renamed the `github-actions-test.yml` for consistency, updating the directory from `workflow` to `workflows`. * Update .github/workflows/github-actions-test.yml
1 parent 650ae05 commit 0c1a417

File tree

4 files changed

+22
-43
lines changed

4 files changed

+22
-43
lines changed

.github/workflow/github-actions-deploy-snapshots.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflow/github-actions-test.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Maven Run Tests
2+
3+
on:
4+
push:
5+
branches: [ "master", "release" ]
6+
pull_request:
7+
branches: [ "master", "release" ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Set up JDK 21
16+
uses: actions/setup-java@v4
17+
with:
18+
java-version: '21'
19+
distribution: 'temurin'
20+
- name: Test with Maven
21+
run: mvn test

pic-sure-auth-services/src/main/resources/application.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,4 +113,4 @@ server.servlet.session.cookie.http-only=true
113113
server.servlet.session.cookie.secure=true
114114

115115
spring.devtools.remote.secret=${DEVTOOLS_SECRET:false}
116-
spring.devtools.remote.context-path=/remote
116+
spring.devtools.remote.context-path=/remote

0 commit comments

Comments
 (0)