Skip to content

Commit

Permalink
setup github action
Browse files Browse the repository at this point in the history
  • Loading branch information
gy2006 committed Dec 14, 2024
1 parent c5116df commit bb1ecb2
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: flow.ci

on:
push:
branches:
- feature/*

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git Clone
uses: actions/checkout@v4

- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'corretto'
cache: maven

- name: Build with Maven
run: ./mvnw test

0 comments on commit bb1ecb2

Please sign in to comment.