Skip to content

Commit

Permalink
Test github actions (#228)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
Gcolon021 authored Oct 23, 2024
1 parent 650ae05 commit 0c1a417
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 43 deletions.
23 changes: 0 additions & 23 deletions .github/workflow/github-actions-deploy-snapshots.yml

This file was deleted.

19 changes: 0 additions & 19 deletions .github/workflow/github-actions-test.yml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/github-actions-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Maven Run Tests

on:
push:
branches: [ "master", "release" ]
pull_request:
branches: [ "master", "release" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Test with Maven
run: mvn test
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,4 @@ server.servlet.session.cookie.http-only=true
server.servlet.session.cookie.secure=true

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

0 comments on commit 0c1a417

Please sign in to comment.