From 3f928cc687e5930ac6ad5bed46990e53a5953a4d Mon Sep 17 00:00:00 2001 From: Don Strawsburg Date: Tue, 20 Jan 2026 12:05:37 -0500 Subject: [PATCH 1/2] adding ci/cd --- .gitea/workflows/ci.yaml | 0 .idea/dataSources.xml | 12 ++++++++++++ 2 files changed, 12 insertions(+) create mode 100644 .gitea/workflows/ci.yaml diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml new file mode 100644 index 0000000..e69de29 diff --git a/.idea/dataSources.xml b/.idea/dataSources.xml index 9b1fd28..7c2f75c 100644 --- a/.idea/dataSources.xml +++ b/.idea/dataSources.xml @@ -55,5 +55,17 @@ $ProjectFileDir$ + + postgresql + true + org.postgresql.Driver + jdbc:postgresql://ash.gofwd.group:5433/postgres + + + + + + $ProjectFileDir$ + \ No newline at end of file From 6a8dd7208ea5f3e970e28a096b33b53e20e2da64 Mon Sep 17 00:00:00 2001 From: Don Strawsburg Date: Tue, 20 Jan 2026 15:10:19 -0500 Subject: [PATCH 2/2] ci file --- .gitea/workflows/ci.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index e69de29..1e7a441 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -0,0 +1,22 @@ +name: spring-api-ci + +on: + push: + branches: ["**"] + pull_request: + +jobs: + build-test: + runs-on: ubuntu + steps: + - uses: actions/checkout@v4 + + - name: Setup Java 21 + uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: "21" + cache: maven + + - name: Build & test + run: mvn -B -ntp clean verify